-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.prod.js
executable file
·54 lines (48 loc) · 1.71 KB
/
webpack.prod.js
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
const Webpack = require('webpack');
const JsonMinimizerPlugin = require('json-minimizer-webpack-plugin');
const { merge } = require('webpack-merge');
const commonConfig = require('./webpack.common');
module.exports = merge(commonConfig, {
mode: 'production',
devtool: 'source-map',
optimization: {
minimize: true,
minimizer: [
'...',
new JsonMinimizerPlugin({
test: /\..*json/i,
}),
],
splitChunks: {
chunks: 'all',
cacheGroups: {
vendor: {
test(module) {
return (
module.resource &&
!module.resource.endsWith('.css') &&
module.resource.match(/[\\/]node_modules[\\/]/)
);
},
name(module) {
// get the name. E.g. node_modules/packageName/not/this/part.js or node_modules/packageName
const packageName = module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/)[1];
// npm package names are URL-safe, but some servers don't like @ symbols
return `npm.${packageName.replace('@', '')}`;
}
},
// Create a commons chunk, which includes all code shared between entry points.
commons: {
name: 'commons',
chunks: 'initial',
minChunks: 2
}
}
}
},
plugins: [
new Webpack.DefinePlugin({
ENV: JSON.stringify('production')
})
]
});