generated from Yegorich555/webpack-must-have
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.prod.js
64 lines (61 loc) · 2.98 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
/* eslint-disable @typescript-eslint/no-var-requires */
/* eslint-disable import/no-extraneous-dependencies */
const { merge } = require("webpack-merge");
const CompressionPlugin = require("compression-webpack-plugin");
const TerserPlugin = require("terser-webpack-plugin");
const OptimizeCSSAssetsPlugin = require("optimize-css-assets-webpack-plugin");
const common = require("./webpack.common");
module.exports = (env, argv) => {
const commonConfig = common(env, argv);
/** @type {import('webpack').Configuration} */
const extendedConfig = {
mode: "production",
devtool: argv.sourceMap != null ? "source-map" : false, // option controls how source maps are generated (affects on build speed dramatically): https://v4.webpack.js.org/configuration/devtool/
output: {
filename: "[name].[contenthash:8].js", // contenthash-this is version for avoding browser-cache issue: user always has to get the last version of files
chunkFilename: "[name].[contenthash:8].js",
},
performance: {
assetFilter: function assetFilter(assetFilename) {
return !/(\.map$)|(fonts)|(images)|(icons)/.test(assetFilename); // ignore these files from perfomance-hints
},
},
optimization: {
minimizer: [
new TerserPlugin({
// default webpack plugin for js-optimization which should be configured: https://v4.webpack.js.org/configuration/optimization/#optimizationminimizer
// speedest alternative of UglifyJS (it improves minifying js files)
test: /\.m?js(\?.*)?$/i,
// exclude: /\.m?js(\?.*)?$/i, // uncomment if we don't need uglifying (for debug purpose)
extractComments: false, // disable extracting comments to a different file
terserOptions: {
toplevel: true, // https://github.com/terser/terser#minify-options
output: {
comments: false, // remove comments from files
},
mangle: {
safari10: true, // for preventing Safari 10/11 bugs in loop scoping and await
},
compress: { pure_funcs: ["console.info", "console.debug", "console.warn"] }, // remove this functions when their return values are not used
},
}),
new OptimizeCSSAssetsPlugin({}), // it minifies css and optimize it with cssnano: https://cssnano.co/guides/optimisations
],
},
plugins: [
// optional: it creates brotli-compressed files in '[path].gz[query]'
new CompressionPlugin({
algorithm: "gzip",
filename: "[path][base].gz[query]",
threshold: common.filesThreshold, // (bytes). Only assets bigger than this size are processed
}),
// optional: it creates gzip-compressed files in '[path].br[query]'
new CompressionPlugin({
algorithm: "brotliCompress",
filename: "[path][base].br[query]",
threshold: common.filesThreshold, // (bytes). Only assets bigger than this size are processed
}),
],
};
return merge(commonConfig, extendedConfig);
};