Adding Bootstrap in Our Application
Learn how to add assets to an Ember application using different package managers.
Adding assets to our build
While building our application, Ember CLI bundles all the required JavaScript files and application code into one big ball. This big ball is named after the project name. The same procedure is followed for the CSS files. Ember uses a package called Broccoli to bundle our assets. The ember-cli-build.js
file contains the configuration for Broccoli.
We can add assets to our ...