equal
deleted
inserted
replaced
|
1 /* global require, module */ |
|
2 var EmberApp = require('ember-cli/lib/broccoli/ember-app'); |
|
3 |
|
4 module.exports = function(defaults) { |
|
5 var app = new EmberApp(defaults, { |
|
6 // Add options here |
|
7 sassOptions: { |
|
8 includePaths: [ |
|
9 'bower_components/bootstrap-sass/assets/stylesheets/' |
|
10 ] |
|
11 }, |
|
12 fingerprint: { |
|
13 enabled: false |
|
14 } |
|
15 }); |
|
16 |
|
17 // Use `app.import` to add additional libraries to the generated |
|
18 // output files. |
|
19 // |
|
20 // If you need to use different assets in different |
|
21 // environments, specify an object as the first parameter. That |
|
22 // object's keys should be the environment name and the values |
|
23 // should be the asset to use in that environment. |
|
24 // |
|
25 // If the library that you are including contains AMD or ES6 |
|
26 // modules that you would like to import into your application |
|
27 // please specify an object with the list of modules as keys |
|
28 // along with the exports of each module as its value. |
|
29 |
|
30 return app.toTree(); |
|
31 }; |