我想在我的應用程序中使用引導主題Lumen。我已經安裝了它的純JS和CSS通過bower
:Bower + bootstrap主題 - 如何包含字體?
/* part of bower.json */
{
"bootstrap.min.css": "https://bootswatch.com/lumen/bootstrap.min.css",
"bootstrap.min.js": "https://bootswatch.com/lumen/bootstrap.min.css"
}
因此,兩個文件都安裝在bower_components/bootstrap.min.css/index.css
和bower_components/bootstrap.min.js/index.js
。 font_face
選項index.css
需要../fonts/glyphicon-font-name.woff
。所以,引導程序的所有字體應該放在bower_components/fonts
!
當然,我可以安裝bootstrap
涼亭包,然後運行grunt-copy
後每隔bower install
,但這種方法似乎是錯誤的。我如何在我的./index.html
右邊做這個字體要求?
複製像圖像和字體的依賴關係是'咕嚕-copy'的唯一途徑。你可以添加一個postinstall掛鉤到bower來複制字體。 –
@AhmadAlfy你是說每個人都是通過bower安裝bootstrap複製粘貼它的字體文件的?這似乎很奇怪。我覺得應該有一個乾淨的方式 – asiniy