Last active
August 29, 2015 14:14
-
-
Save givanse/0aaab778a4b17238cc7e to your computer and use it in GitHub Desktop.
Manually install Bootstrap in Ember CLI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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