-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
59 lines (54 loc) · 1.28 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
55
56
57
58
59
const path = require('path');
const Dotenv = require('dotenv-webpack');
const { merge } = require('webpack-merge');
const common = require('./webpack.common.js');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const { ESBuildMinifyPlugin } = require('esbuild-loader');
module.exports = merge(common, {
mode: 'production',
optimization: {
splitChunks: {
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
chunks: 'all',
minSize: 10000,
maxSize: 250000,
},
},
},
minimizer: [
new ESBuildMinifyPlugin({
target: 'esnext',
css: true,
loader: 'tsx',
}),
],
},
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 512000,
},
plugins: [
new Dotenv({
path: path.resolve(__dirname, './.env.production'),
}),
new HtmlWebpackPlugin({
filename: 'index.html',
template: 'public/index.html',
minify: {
collapseWhitespace: true,
removeComments: true,
hash: true,
},
}),
],
output: {
filename: '[name].[hash:8].js',
chunkFilename: '[name].[hash:8].bundle.js',
path: path.resolve(__dirname, 'dist'),
publicPath: '/',
},
});