|
@@ -1,7 +1,4 @@
|
|
// webpack.config.js
|
|
// webpack.config.js
|
|
-
|
|
|
|
-const webpack = require('webpack');
|
|
|
|
-
|
|
|
|
module.exports = {
|
|
module.exports = {
|
|
// entry point of our application
|
|
// entry point of our application
|
|
entry: './main.js',
|
|
entry: './main.js',
|
|
@@ -39,8 +36,5 @@ module.exports = {
|
|
presets: ['es2015'],
|
|
presets: ['es2015'],
|
|
plugins: ['transform-runtime'],
|
|
plugins: ['transform-runtime'],
|
|
comments: false
|
|
comments: false
|
|
- },
|
|
|
|
- plugins: [
|
|
|
|
- new webpack.optimize.UglifyJsPlugin()
|
|
|
|
- ]
|
|
|
|
|
|
+ }
|
|
};
|
|
};
|