forked from hwdtech/smartforms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
32 lines (28 loc) · 806 Bytes
/
webpack.config.js
File metadata and controls
32 lines (28 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* eslint-env node */
const webpack = require('webpack');
const WebpackConfig = require('webpack-config').default;
const CompressionPlugin = require('compression-webpack-plugin');
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
module.exports = new WebpackConfig().extend('./webpack.common.config.js').merge({
devtool: 'source-map',
entry: require.resolve('./frontend'),
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: '"production"'
}
}),
new LodashModuleReplacementPlugin(),
new webpack.optimize.UglifyJsPlugin({
screwIe8: true,
compress: {
warnings: false
}
}),
new CompressionPlugin({
asset: '[path].gz[query]',
algorithm: 'gzip',
threshold: 10240
})
]
});