我有一个非常简单的 LESS 文件,现在只导入 Bootstrap。我正在使用grunt
并grunt-contrib-less@0.9.0
在保存(less@1.6.3
)时编译 LESS 文件。
我的文件如下所示:
@charset "utf-8";
/**
* This is the root style file for the app
* to include styles in your html, you only need to include either:
* dist/styles.dev.css (for development)
* dist/styles.css (for production)
*/
// Libraries
@import "../lib/bootstrap/less/bootstrap"
// Our own files
每当我尝试运行我的less:dev
任务时,我都会收到以下错误。
Running "less:dev" (less) task
>> ParseError: Unrecognised input in style/styles.less on line 10, column 1:
>> 9 // Libraries
>> 10 @import "../lib/bootstrap/less/bootstrap"
>> 11
我已经尝试从文件中删除除导入行之外的所有内容,但它仍然失败,因此该@import
指令发生了一些奇怪的事情。
有任何想法吗?