ember-cli-build.js
'use strict';
const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
module.exports = function(defaults) {
let app = new EmberAddon(defaults, {
'ember-cli-babel': {
includePolyfill: true,
},
stylusOptions: {
outputFile: 'dummy.css'
},
'ember-prism': {
theme: 'okaidia',
components: ['javascript', 'handlebars', 'markup-templating']
},
'ember-bootstrap': {
'bootstrapVersion': 3,
'importBootstrapFont': false,
'importBootstrapCSS': true
}
});
return app.toTree();
};