我正在使用 Foundation 5 -foundation-libsass-template。使用 bower,我使用以下命令添加了基础图标"bower install foundation-icons --save"
。此命令下载基础图标包并将其保存到 bower_components 文件夹并修改我的bower.json
文件。
{
"name": "foundation-libsass-template",
"dependencies": {
"foundation": "zurb/bower-foundation",
"foundation-icon-fonts": "zurb/foundation-icon-fonts"
}
}
问题:当我添加@import "foundation-icon-fonts";
到我的 app.scss 文件时,Grunt 返回一个错误,因为它找不到该文件:
警告:C:/Users/Chris/Websites/example.com/lp/new/scss/app.scss:3:找不到或无法读取要导入的文件:“foundation-icon-fonts”
问题 1:我是否需要修改 Grunt.js 文件才能包含此库?如果是这样,有人可以提供一个例子吗?谢谢。