Skip to content

Instantly share code, notes, and snippets.

@givanse
Last active August 29, 2015 14:14
Show Gist options
  • Save givanse/0aaab778a4b17238cc7e to your computer and use it in GitHub Desktop.
Save givanse/0aaab778a4b17238cc7e to your computer and use it in GitHub Desktop.
Manually install Bootstrap in Ember CLI
In the command line:
bower install --save bootstrap
In your Brocfile
app.import('bower_components/bootstrap/dist/css/bootstrap.css');
app.import('bower_components/bootstrap/dist/css/bootstrap.css.map',
{ destDir: 'assets' });
app.import('bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.eot',
{ destDir: 'fonts' });
app.import('bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff',
{ destDir: 'fonts' });
app.import('bower_components/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2',
{ destDir: 'fonts' });
app.import('bower_components/bootstrap/dist/js/bootstrap.js');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment