forked from opengovsg/FormSG
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
54 lines (51 loc) · 1.25 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 merge = require('webpack-merge')
const TerserPlugin = require('terser-webpack-plugin')
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin')
const [jsBundle, cssBundle] = require('./webpack.common.js')
module.exports = [
merge(jsBundle, {
devtool: 'source-map',
mode: 'production',
optimization: {
minimize: true,
usedExports: true,
sideEffects: false,
minimizer: [
new TerserPlugin({
cache: true,
parallel: true,
sourceMap: true,
terserOptions: {
ecma: 5,
mangle: true,
compress: true,
toplevel: true,
safari10: true,
output: {
comments: false,
},
},
}),
],
},
module: {
rules: [
{
test: /\.js$/,
// Don't transpile polyfills
exclude:
/@babel(?:\/|\\{1,2})runtime|core-js|web-streams-polyfill|whatwg-fetch|abortcontroller-polyfill|text-encoding/,
use: {
loader: 'babel-loader',
},
},
],
},
}),
merge(cssBundle, {
mode: 'production',
optimization: {
minimizer: [new OptimizeCSSAssetsPlugin()],
},
}),
]