-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.prod.config.js
45 lines (44 loc) · 1.16 KB
/
webpack.prod.config.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
const { merge } = require('webpack-merge')
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer')
const { WebpackManifestPlugin } = require('webpack-manifest-plugin')
const TerserPlugin = require('terser-webpack-plugin')
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin')
const HtmlMinimizerPlugin = require('html-minimizer-webpack-plugin')
const baseWebpackConfig = require('./webpack.base.config')
module.exports = merge(baseWebpackConfig, {
mode: 'production',
entry: {
app: './src/index.tsx'
},
devtool: 'source-map',
plugins: [
// new BundleAnalyzerPlugin()
],
optimization: {
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true
}
}
}),
new CssMinimizerPlugin({
minimizerOptions: {
preset: [
'default',
{
discardComments: { removeAll: true },
},
],
}}
),
new HtmlMinimizerPlugin({ parallel: true }),
new WebpackManifestPlugin({
publicPath: './'
})
]
}
})