Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

ember-cli-build.js 793 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  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. };
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...