Skip to content
Snippets Groups Projects
Unverified Commit e8fa7fe8 authored by Christoph Wurst's avatar Christoph Wurst
Browse files

Fix whitespaces

parent 2ab93bfc
No related branches found
No related tags found
No related merge requests found
......@@ -3,15 +3,15 @@ const merge = require('webpack-merge');
const baseConfig = require('./webpack.base.config.js');
module.exports = merge(baseConfig, {
plugins: [
plugins: [
new webpack.DefinePlugin({ // <-- key to reducing React's size
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin(), //minify everything
new webpack.optimize.AggressiveMergingPlugin()//Merge chunks
]
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin(), // Minify everything
new webpack.optimize.AggressiveMergingPlugin()// Merge chunks
]
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment