我想在我的应用程序中使用bootstrap主题Lumen。我通过bower
安装了它的纯js和css:
/* 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
的{{1}}选项需要index.css
。因此,引导程序的所有字体都应放在../fonts/glyphicon-font-name.woff
中!
当然,我可以安装bower_components/fonts
bower软件包,然后在每个bootstrap
之后运行grunt-copy
,但这种方法似乎不对。如何在我的bower install
上执行此字体要求?
答案 0 :(得分:1)
您可以安装bower包bootswatch-dist - bootswatch主题的分发包 对于安装版本的3.3.5流明,请将以下依赖项添加到bower.json
"dependencies": {
"bootswatch-dist": "3.3.5-lumen"
}