Bower + bootstrap主题 - 如何包含字体?

时间:2015-08-13 12:52:40

标签: twitter-bootstrap fonts gruntjs bower

我想在我的应用程序中使用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.cssbower_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上执行此字体要求?

1 个答案:

答案 0 :(得分:1)

您可以安装bower包bootswatch-dist - bootswatch主题的分发包 对于安装版本的3.3.5流明,请将以下依赖项添加到bower.json

"dependencies": {
 "bootswatch-dist": "3.3.5-lumen"
}