-
Notifications
You must be signed in to change notification settings - Fork 3
/
webpack.prod.config.js
44 lines (37 loc) · 994 Bytes
/
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
const webpack = require("webpack");
const { merge } = require("webpack-merge");
const TerserPlugin = require("terser-webpack-plugin");
const CssMinimizerPlugin = require("css-minimizer-webpack-plugin");
const common = require("./webpack.common.js");
const package = require("./package.json");
const packageVersion = package.version;
module.exports = merge(common, {
mode: "production",
devtool: false,
output: {
filename: "[name].bundle.[contenthash].js",
chunkFilename: "[name].bundle.[contenthash].js",
publicPath: "./",
clean: true,
},
plugins: [
new webpack.EnvironmentPlugin({
NODE_ENV: "production",
PACKAGE_VERSION: packageVersion,
}),
],
performance: {
hints: false,
maxEntrypointSize: 128000,
maxAssetSize: 0,
},
optimization: {
moduleIds: "deterministic",
minimizer: [new CssMinimizerPlugin({})],
},
performance: {
hints: false,
maxEntrypointSize: 512000,
maxAssetSize: 512000,
},
});