nexus site path corrected
[portal.git] / ecomp-portal-FE / client / bower_components / angular-cache / build_examples / webpack_es6 / webpack.config.js
1 module.exports = {
2   entry: './app.js',
3   output: {
4     filename: 'bundle.js'
5   },
6   resolve: {
7     alias: {
8       'angular-cache': '../../dist/angular-cache.js'
9     }
10   },
11   module: {
12     loaders: [
13       { test: /(.+)\.js$/, loader: 'babel-loader?blacklist=useStrict' }
14     ]
15   }
16 };