Advertisement
Guest User

Untitled

a guest
Sep 16th, 2015
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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.         sourcemaps: {
  8.             enabled: false,
  9.             extensions: ['js', 'css']
  10.         },
  11.         tests: false,
  12.         hinting: false,
  13.  
  14.         storeConfigInMeta: false,
  15.  
  16.         outputPaths: {
  17.             app: {
  18.                 html: 'index.html',
  19.                 css: {
  20.                     app: '/app.css',
  21.                 },
  22.                 js: '/app.js'
  23.             },
  24.             vendor: {
  25.                 css: '/vendor.css',
  26.                 js: '/vendor.js'
  27.             }
  28.         },
  29.  
  30.         vendorFiles: {
  31.           'jquery.js': {
  32.             development: false,
  33.             production: false
  34.           }
  35.         }
  36.     });
  37.  
  38.     return app.toTree();
  39. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement