-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.prod.js
72 lines (70 loc) · 1.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
const path = require("path");
const webpack = require("webpack");
const merge = require("webpack-merge");
const common = require("./webpack.common.js");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const UglifyJSPlugin = require("uglifyjs-webpack-plugin");
const { GenerateSW } = require("workbox-webpack-plugin");
//const CriticalCssPlugin = require("critical-css-webpack-plugin");
//const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer");
const { UnusedFilesWebpackPlugin } = require("unused-files-webpack-plugin");
module.exports = merge(common, {
devtool: false,
mode: "production",
output: {
filename: "[name].js",
chunkFilename: "[id].js",
publicPath: "/"
},
optimization: {
splitChunks: {
chunks: "all"
}
/*minimizer: [
new UglifyJSPlugin({
cache: true,
parallel: true,
uglifyOptions: {
compress: true,
ecma: 6,
mangle: true
},
sourceMap: false
})
]*/
},
plugins: [
new HtmlWebpackPlugin({
template: path.join(__dirname, "/src/index.html"),
minify: {
removeComments: true
//collapseWhitespace: true,
}
}),
new webpack.DefinePlugin({
"process.env.NODE_ENV": JSON.stringify("production")
}),
/*new CriticalCssPlugin({
src: 'index.html',
dest: 'index.html',
inline: true,
minify: true,
width: 375,
height: 565,
penthouse: {
blockJSRequests: false
}
}),*/
new UnusedFilesWebpackPlugin(),
new GenerateSW({
// these options encourage the ServiceWorkers to get in there fast
// and not allow any straggling "old" SWs to hang around
swDest: "sw.js",
clientsClaim: true,
skipWaiting: true,
cacheId: "t3rminal-jor3l",
include: [/\.html$/, /\.js$/, /\.css$/, /\.jpg$/, /\.jpeg$/, /\.png$/]
})
//new BundleAnalyzerPlugin
]
});