Closed jonalange closed 2 years ago
Maybe that's already possible, but I couldn't find it in the docs.
Currently every .less gets converted to it's own css file, doesn't matter if anything is linked.
For example when I use in a main.less
main.less
@import "_test/one"; @import "_test/two";
It's not getting combined/ imported in the main.css. It will just be empty and one.css and two.css get their own file.
main.css
one.css
two.css
Well, it's working but it removes comments. That's why I thought it doesn't work! My bad!
Maybe that's already possible, but I couldn't find it in the docs.
Currently every .less gets converted to it's own css file, doesn't matter if anything is linked.
For example when I use in a
main.less
It's not getting combined/ imported in the
main.css
. It will just be empty andone.css
andtwo.css
get their own file.