-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.prod.js
47 lines (42 loc) · 1.28 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
const path = require("path");
const webpack = require("webpack");
const { merge } = require("webpack-merge");
const TerserPlugin = require("terser-webpack-plugin");
const { CleanWebpackPlugin } = require("clean-webpack-plugin");
const HtmlWebpackInlineSourcePlugin = require("html-webpack-inline-source-plugin");
const HTMLWebpackPlugin = require("html-webpack-plugin");
const common = require("./webpack.config.common");
const config = merge(common, {
mode: "production",
output: {
path: path.join(__dirname, "dist"),
publicPath: "./",
},
plugins: [
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: ["dist"],
}),
new HTMLWebpackPlugin({
title: "UtilityCSS Electron documentation.",
template: path.join(__dirname, "src/index.html"),
filename: "index.html", // output file,
inject: "body",
inlineSource: ".(js)$",
chunks: ["main"],
minify: {
conservativeCollapse: true,
minifyCSS: true,
minifyJS: true,
collapseWhitespace: true,
},
}),
new HtmlWebpackInlineSourcePlugin(HTMLWebpackPlugin),
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
],
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
devtool: false,
});
module.exports = config;