我正在使用Foundation 5 - foundation-libsass-template。使用涼亭我已經使用以下命令添加了基礎圖標"bower install foundation-icons --save"
。該命令下載基礎圖標包並將其保存到bower_components文件夾並修改我的bower.json
文件。通過Bower在--libsass環境中安裝Foundation-Icon-Fonts
{
"name": "foundation-libsass-template",
"dependencies": {
"foundation": "zurb/bower-foundation",
"foundation-icon-fonts": "zurb/foundation-icon-fonts"
}
}
問題: 當我添加@import "foundation-icon-fonts";
我app.scss文件咕嚕,因爲它無法找到該文件返回一個錯誤:
警告: C:/用戶/克里斯/網站/example.com/lp/new/scss/app.scss:3: 要導入的文件找不到或無法讀取:「基金會圖標字體」
問題1: 我是否需要修改的咕嚕。 js文件爲了包括這個庫?如果是這樣,有人可以提供一個例子嗎?謝謝。