Install the addon if you have not done so already:
ember install ember-bootstrap
By default, ember-bootstrap installs Bootstrap 4 and uses the installed preprocessor if there is one. You can use the ember-bootstrap default blueprint to switch the Bootstrap version or preprocessor.
To use a Sass as a CSS preprocessor instead of plain CSS (highly recommended!), you can use this command to install and set this up:
ember generate ember-bootstrap --preprocessor=sass
See the Assets guide for details.
You can switch to Bootstrap 5 by running this command:
ember generate ember-bootstrap --bootstrap-version=5
The default blueprint does the following:
package.json
and
bower.json
ember-cli-sass
and
app.scss
if appropriate
app.scss
if it's not there already
ember-cli-build.js
to ensure the proper ember-bootstrap settings for your configuration
Besides the above mentioned configuration options that are handled explicitly using the default blueprint, you can further customize your setup with the following options:
Option | Allowed values | Default | Description |
---|---|---|---|
bootstrapVersion | 4 / 5 | 4 |
Specify the Bootstrap version to use. To make sure you have the right dependencies installed, you should use the default blueprint mentioned above to set this! |
importBootstrapCSS | true / false |
true if no preprocessor |
Include the default static
See the Assets guide for more details. |
insertEmberWormholeElementToDom | true / false |
true |
Will automatically insert a div into your index.html, where
Bootstrap's modals and tooltips will be rendered to. If you set this
to false, you will have to add an
This is especially required if you render your Ember app into a custom application root element, e.g. on an server rendered page, where the default div is not available. |
include | Array of component names |
Component tree shaking: include only the listed components into your
build, to reduce your JavaScript bundle size. Components not listed
here will not be available. You should use either
Example:
|
|
exclude | Array of component names |
Exclude the listed components from your build, to reduce your
JavaScript bundle size. See
|
These options can be set in your ember-cli-build.js
file:
//your-bootstrap-app/ember-cli-build.js
module.exports = function(defaults) { let app = new EmberApp(defaults, {
'ember-bootstrap': { importBootstrapCSS: false, exclude: ['bs-popover',
'bs-accordion'] } }); return app.toTree(); };