This repository was archived by the owner on Apr 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.js
172 lines (164 loc) · 4.69 KB
/
webpack.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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
const webpack = require('webpack');
const join = require('path').join;
const pathJoin = path => join(__dirname, path);
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const OptimizeCSSAssetsPlugin = require('optimize-css-assets-webpack-plugin');
const CompressionWebpackPlugin = require('compression-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const HtmlWebpackPlugin = require('html-webpack-plugin');
const crypto = require('crypto');
const isModuleCSS = (module) => {
return module.type === 'css/mini-extract';
};
module.exports = (env, argv) => {
const isProductEnv = argv.mode === 'production';
const config = {
entry: pathJoin('src/index.tsx'),
resolve: {
alias: {
'@': pathJoin('src'),
},
extensions: ['css', '.ts', '.tsx', '.js', '.json'],
},
devServer: {
contentBase: pathJoin('static'),
compress: true,
port: 9000,
},
module: {
rules: [
{
test: /\.(ts|tsx|js)?$/,
exclude: /(node_modules|__test__)/,
use: 'babel-loader',
},
{
test: /\.css$/,
use: [
MiniCssExtractPlugin.loader,
'css-loader',
],
},
],
},
output: {
path: pathJoin('./static/resources'),
filename: '[name].bundle.js',
chunkFilename: '[name].bundle.js',
path: pathJoin('./static/resources'),
},
plugins: [
new CompressionWebpackPlugin({
test: new RegExp(`\\.(${ ['js', 'ts', 'css', 'html'].join('|') })$`),
filename: '[path].gz[query]',
algorithm: 'gzip',
threshold: 8192,
cache: true,
}),
new MiniCssExtractPlugin({
filename: `[name].bundle.css`,
chunkFilename: `[name].bundle.css`,
}),
new HtmlWebpackPlugin({
template: pathJoin(`./public/index.html`),
filename: './index.html',
}),
],
optimization: {
minimize: isProductEnv,
minimizer: [
new TerserPlugin({
terserOptions: {
parse: {
ecma: 8,
},
compress: {
ecma: 6,
warnings: false,
comparisons: false,
inline: 2,
},
keep_classnames: isProductEnv,
keep_fnames: isProductEnv,
output: {
ecma: 6,
comments: false,
ascii_only: true,
},
},
}),
new OptimizeCSSAssetsPlugin({
assetNameRegExp: /\.min\.css$/g,
cssProcessor: require('cssnano'),
cssProcessorPluginOptions: {
preset: [
'default',
{ discardComments: { removeAll: true }},
{ minifyFontValues: { removeQuotes: false }},
],
},
canPrint: true,
}),
],
splitChunks: {
chunks: 'all',
cacheGroups: {
default: false,
vendors: false,
// vendors was renamed to defaultVendors
defaultVendors: false,
framework: {
chunks: 'all',
name: 'framework',
// eslint-disable-next-line max-len
test: /(?<!node_modules.*)[\\/]node_modules[\\/](react|react-dom|react-router-dom)[\\/]/,
priority: 40,
enforce: true,
},
lib: {
test(module) {
return (
module.size() > 80000 &&
/node_modules[/\\]/.test(module.identifier())
);
},
name(module) {
const hash = crypto.createHash('sha1');
if (isModuleCSS(module)) {
module.updateHash(hash);
return hash.digest('hex').substring(0, 8);
} else {
if (!module.libIdent) {
throw new Error(
`Encountered unknown module type: ${module.type}. Please open an issue.`,
);
}
}
hash.update(module.libIdent({ context: __dirname }));
return hash.digest('hex').substring(0, 8);
},
priority: 30,
minChunks: 1,
reuseExistingChunk: true,
},
commons: {
name: 'commons',
minChunks: 1, // entry points length
priority: 20,
},
},
maxInitialRequests: 25,
minSize: 20000,
},
},
};
if (argv.watch) {
config.plugins.push(
new BundleAnalyzerPlugin({
analyzerPort: 9090,
}),
);
}
return config;
};