我在VS 2013更新2中工作,最近安装了VS 2013更新2的Web要素。
我的LESS文件被分散到每个页面的一些LESS样式表中。我面临着URL的@import声明的错误,例如: “〜/内容/ fontawesome /字体awesome.less”
出错:
/*
Compilation Error.
See error list for details
FileError: '~/content/fontawesome/font-awesome.less' wasn't found
*/
Web essentials目前似乎不支持从不同文件夹导入的文件的编译。
有关如何解决此问题的任何建议或解决方案?
答案 0 :(得分:0)
在url()
中省略@import
应该有效。
@import "~/content/fontawesome/font-awesome.less";
Github问题:LESS compiling doesn't seem to handle a relative path correctly #134