如何将Bootstrap添加到lineman ember模板中

时间:2014-05-03 08:04:53

标签: node.js ember.js gruntjs frontend linemanjs

我刚安装了lineman并从下面的网址克隆了ember模板。

https://github.com/linemanjs/lineman-ember-template

然后在pages / index.us文件中添加了bootstrap css

<link rel="stylesheet" type="text/css" href="css/bootstrap.css" media="all" />

我在bootstrap.css上遇到404错误,app / css / bootstrap.css文件中有文件,但我无法在生成的文件夹中找到相同的文件。

任何人都可以提供帮助。

2 个答案:

答案 0 :(得分:1)

跑步:

yourProject>lineman fetch bootstrap

答案 1 :(得分:0)

默认情况下,lineman连接以下内容:

app/css/**/*.css 

&安培;

vendor/css/**/*.css

为:

generated/css/app.css

所以从技术上讲,你只需要在你的html中包含generated/css/app.css,并且应该包含Bootstrap。

我建议将Bootstrap添加到vendor/css文件夹中。