LESS:无法识别的输入“@import ......”

时间:2014-02-25 09:40:48

标签: less gruntjs grunt-contrib-less

我有一个非常简单的LESS文件,现在只需导入Bootstrap。我正在使用gruntgrunt-contrib-less@0.9.0来编译保存时的LESS文件(less@1.6.3)。

我的文件如下:

@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指令会发生奇怪的事情。

有什么想法吗?

1 个答案:

答案 0 :(得分:5)

@import

之后使用分号
@import "../lib/bootstrap/less/bootstrap";