简体   繁体   中英

importing .less files are compiled into single .css file

I am importing several .less files into styles.less file like following

@import "foo1";
@import "foo2";
@import "foo3";
@import "foo4";

Now when I compile styles.less file it merge all .less files into styles.css . This approach is good when I want to deploy it to production but I want to compile all .less files separately so that I could easily debug in my chrome dev tools in dev environment. How can I compile them in this way?

Compile the .less files separately. Then link all of them on the HTML page.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM