-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.config.prod.js
84 lines (81 loc) · 2.92 KB
/
webpack.config.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/**
* For REAL production mode webpack config
**/
const path = require('path');
const { merge } = require('webpack-merge');
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
const ManifestReplacePlugin = require('webpack-manifest-replace-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const commonConfig = require('./webpack.config.common');
module.exports = (env = { debug: false, analyze: false }) => {
const { debug, analyze } = env;
const webpackConfig = merge(commonConfig, {
mode: 'production',
devtool: debug ? 'cheap-module-source-map' : false,
output: {
filename: '[name]-[chunkhash].js',
path: path.join(__dirname, 'build/prepare/BOOT-INF/classes/static/bundle'),
},
module: {
rules: [
{
test: /\.css$/,
use: [MiniCssExtractPlugin.loader, { loader: 'css-loader', options: { sourceMap: debug } }],
},
{
test: /\.(ts|tsx)$/,
exclude: /node_modules|src\/main\/frontend\/vendor/,
use: 'babel-loader',
},
],
},
performance: {
hints: false,
},
optimization: {
minimizer: [
new TerserPlugin({
parallel: true,
terserOptions: {
compress: {
drop_console: !debug,
drop_debugger: !debug,
unused: true,
dead_code: true,
},
output: {
beautify: false,
comments: false,
},
warnings: false,
},
}),
new CssMinimizerPlugin({
minimizerOptions: {
preset: [
'default',
{
discardComments: {
removeAll: true,
},
},
],
},
}),
],
},
plugins: [
new MiniCssExtractPlugin({ filename: '[contenthash].css' }),
new ManifestReplacePlugin({
include: path.resolve(__dirname, 'src/main/resources/templates'),
test: /\.(jsp|html|htm)$/,
outputDir: path.resolve(__dirname, 'build/prepare/BOOT-INF/classes/templates'),
}),
],
});
if (analyze) {
webpackConfig.plugins.push(new (require('webpack-bundle-analyzer').BundleAnalyzerPlugin)());
}
return webpackConfig;
};