I usually suggest the following if you need bootstrap and sass.
Add sass and bootstrap to your ember.js 2.x project
- Run the following two command in your terminal.
ember install ember-cli-sass
ember install ember-cli-bootstrap-sassy
-
Rename your
app.csstoapp.scss. -
Open
./app/styles/app.scssfile in your editor and add the following line:
@import "bootstrap";
- Done.