Why is it so difficult to add bootstrap?

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.css to app.scss.

  • Open ./app/styles/app.scss file in your editor and add the following line:

@import "bootstrap";
  • Done.