This addon aims to be a near carbon copy representation of the latest Bootstrap features and components, using Ember components and modifiers.
This addon is only compatible with Boostrap 5+.
- Ember.js v4.4 or above
- Ember CLI v4.4 or above
- Node.js v14 or above
First, install the addon:
ember install ember-simple-bootstrap
Import Bootstrap JavaScript:
// app/app.js
import 'bootstrap';
Import Bootstrap Sass:
// ember-cli-build.js
const app = new EmberApp(defaults, {
sassOptions: {
includePaths: ['node_modules/bootstrap/scss'],
},
});
// app/styles/app.scss
@import 'bootstrap';
Visit the documentation website to see examples.
See the Contributing guide for details.
This project is licensed under the MIT License.