Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用lessc更少的编译。但是,我无法导入绝对 LESS 文件,lessc 总是说找不到导入的文件。
lessc
例如,
A.少
@import /home/laptop/inc/inc.less
在我的测试中,绝对路径不起作用。解决方案当然是使它们成为相对路径。因此,当我的主目录中有一个较少的文件时(/Users/Gidgidonihah)
/Volumes/remove/less/mixins.less
变成
../../Volumes/remove/less/mixins.less
您需要在文件名周围加上引号,并以分号结尾。Less 对语法非常严格。
@import "/home/laptop/inc/inc.less";