When working with lesscss I would like to join two or three .less files into one super css file.
I know that you can do it using some little ruby magic, but I would like to know if there is something simple in the less engine?
When working with lesscss I would like to join two or three .less files into one super css file.
I know that you can do it using some little ruby magic, but I would like to know if there is something simple in the less engine?
You can use import
, similar to how you can in a regular CSS file.
@import "reset";
@import "config";
@import "header";
@import "forms";
Taken from this SO post. It's also at the bottom of the Less documentation page.