Current section
Files
Jump to
Current section
Files
priv/ember/ember-cli-build.js
/* eslint-env node */
const EmberApp = require('ember-cli/lib/broccoli/ember-app');
module.exports = function(defaults) {
var app = new EmberApp(defaults, {
sassOptions: {
includePaths: [
'bower_components/bootstrap-sass-official/assets/stylesheets',
'bower_components/bootswatch-scss'
]
}
});
return app.toTree();
};