【发布时间】:2014-05-08 12:38:22
【问题描述】:
全新的早午餐(和凉亭)。我通过 bower 安装了 Bootstrap,并且我有以下早午餐配置文件:
exports.config =
# See http://brunch.io/#documentation for docs.
files:
javascripts:
joinTo: 'app.js': /^(app|vendor|bower_components)/
order:
before: [
'bower_components/jquery/jquery.js'
'bower_components/handlebars/handlebars.js'
'bower_components/ember/ember.js'
'bower_components/ember-data-shim/ember-data.js'
'bower_components/bootstrap/dist/js/bootstrap.js'
]
stylesheets:
joinTo: 'app.css': /^(app|vendor|bower_components)/
templates:
precompile: true
root: 'templates'
joinTo: 'app.js': /^app/
我的app.css 中没有任何引导 css。但是,它在 app.js 中显示 js。不太确定可能出了什么问题。
【问题讨论】:
-
嘿@Gregg 你最终弄清楚了吗?我得到了完全相同的problem
-
我也遇到了同样的问题,但是没有包含 JS。有人知道吗?
-
@abbood 有点晚了,但请看我的回答。
标签: css twitter-bootstrap bower brunch