我最近安装了Bourbon Neat,但是当我使用Sass Build在Sublime Text 2中编译我的Scss时,出现以下错误:

Sass::SyntaxError: File to import not found or unreadable: bourbon/bourbon.


这是我的scss文件:

@import "bourbon/bourbon";
@import "neat/neat";
$desktop: new-breakpoint(min-width 768px 12);
$tablet: new-breakpoint(max-width 768px 1);

.container {
 @include outer-container;
}
.content-pri {
 @include span-columns(9);
}
.content-sec {
 @include span-columns(3);
}


我是否错误地安装了Bourbon和Neat?任何帮助将非常感激!

最佳答案

我从未通过Sublime构建Sass,但是通常可以的做法是在@import路径建议的样式表目录中安装Bourbon和Neat,因此请检查一下。

检查ST对该版本使用哪些库,例如Compass 0.12.5与Sass 3.3及更高版本不兼容。

还要检查此link以获得安装说明和相关性。

09-12 00:33