Convert native @import to a single css file.
@import <path_to_vcss_file>Vcss code:
/* module.vcss */
.bar {
text-truncated: true 100px;
}@import ./module.vcss
.foo {
box: content;
}Generated CSS code:
.bar {
width: 100px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.foo {
box-sizing: content-box;
}