You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ember-cli-build.js 793B

123456789101112131415161718192021222324
  1. 'use strict';
  2. const EmberApp = require('ember-cli/lib/broccoli/ember-app');
  3. module.exports = function(defaults) {
  4. let app = new EmberApp(defaults, {
  5. // Add options here
  6. });
  7. // Use `app.import` to add additional libraries to the generated
  8. // output files.
  9. //
  10. // If you need to use different assets in different
  11. // environments, specify an object as the first parameter. That
  12. // object's keys should be the environment name and the values
  13. // should be the asset to use in that environment.
  14. //
  15. // If the library that you are including contains AMD or ES6
  16. // modules that you would like to import into your application
  17. // please specify an object with the list of modules as keys
  18. // along with the exports of each module as its value.
  19. return app.toTree();
  20. };