我相信一张图片最能说明我的问题
https://postimg.org/gallery/37bdm2lp8/
请参阅img for tree document
https://postimg.org/image/qsmm9rdx1/
我的问题很简单,但我没有得到我的main.sass导入所有其他sass文件以进行编译以显示波本资产,所以我的网站不会渲染波本资产
我尝试过基本的@import ../css/1-tools/bourbon
,但这不起作用
由于css现在不起作用,所以有任何帮助:(
答案 0 :(得分:1)
由于您已准备好使用gulp,请尝试使用实际的Bourbon NPM包。您可以将其添加到package.json
文件中,并通过gulpfile
。
gulpfile
(还有其他一些您可以忽略的内容):https://github.com/thoughtbot/bitters/blob/master/Gulpfile.js 您需要添加的此示例gulpfile
的主要部分是line 1上的require
,并在line 17上向您的Sass includePaths
添加波本威士忌
编辑⤵
设置完成后,您需要将sass导入更改为以下内容:
@import "bourbon";
由于includePaths
的添加,gulp-sass
会知道在哪里寻找。