-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.prod.ts
executable file
·210 lines (202 loc) · 5.08 KB
/
webpack.config.prod.ts
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
import path from "path";
import webpack from "webpack";
import CopyPlugin from "copy-webpack-plugin";
import TerserPlugin from "terser-webpack-plugin";
import HtmlWebpackPlugin from "html-webpack-plugin";
import CompressionPlugin from "compression-webpack-plugin";
import MomentLocalesPlugin from "moment-locales-webpack-plugin";
const GLOBALS = {
"process.env.NODE_ENV": JSON.stringify("production"),
__DEV__: false
};
const WebpackConfig: webpack.Configuration = {
resolve: {
extensions: [".ts", ".tsx", ".js", ".jsx", ".json"]
},
performance: {
hints: "warning"
},
entry: path.resolve(__dirname, "src/index"),
target: "web",
mode: "production",
output: {
path: path.resolve(__dirname, "dist"),
publicPath: "/",
filename: "[name].[contenthash].bundle.js",
chunkFilename: "[name].[contenthash].chunk.js",
assetModuleFilename: "[name].[contenthash][ext][query]"
},
optimization: {
runtimeChunk: true,
splitChunks: {
chunks: "async",
name: false,
minSize: 20 * 1024,
minRemainingSize: 0,
maxSize: 300 * 1024,
minChunks: 1,
maxAsyncRequests: 30,
maxInitialRequests: 30,
automaticNameDelimiter: "~",
enforceSizeThreshold: 50000,
cacheGroups: {
defaultVendors: {
test: /[\\/]node_modules[\\/]/,
priority: -10
},
default: {
minChunks: 2,
priority: -20,
reuseExistingChunk: true
}
}
},
minimize: true,
minimizer: [
new TerserPlugin({
terserOptions: {
parse: {},
compress: {
passes: 3
},
mangle: true,
output: {
comments: false,
},
ie8: false,
keep_classnames: undefined,
keep_fnames: false,
safari10: false,
},
parallel: true,
extractComments: false
})
],
},
plugins: [
// Tells React to build in prod mode. https://facebook.github.io/react/downloads.html
new webpack.DefinePlugin(GLOBALS),
// Build-time compression using the Brotli algorithm
// new CompressionPlugin({
// filename: "[path].br[query]",
// algorithm: "brotliCompress",
// test: /\.(js|css|html|svg)$/,
// compressionOptions: {
// // zlib's `level` option matches Brotli's `BROTLI_PARAM_QUALITY` option.
// level: 11,
// },
// threshold: 10240,
// minRatio: 0.8
// }),
// Build-time gzipping (as a fallback)
new CompressionPlugin({
filename: "[path][base].gz[query]",
algorithm: "gzip",
test: /\.js$|\.css$|\.html$/,
threshold: 10240,
minRatio: 0.8,
}),
// Generate HTML file that contains references to generated bundles. See here for how this works: https://github.com/ampedandwired/html-webpack-plugin#basic-usage
new HtmlWebpackPlugin({
template: "src/index.ejs",
favicon: "src/favicon.ico",
minify: {
removeComments: true,
collapseWhitespace: true,
removeRedundantAttributes: true,
useShortDoctype: true,
removeEmptyAttributes: true,
removeStyleLinkTypeAttributes: true,
keepClosingSlash: true,
minifyJS: true,
minifyCSS: true,
minifyURLs: true
},
inject: true
}),
// Minify Moment.js only to Serbian
new MomentLocalesPlugin({
localesToKeep: ["sr"]
}),
// Copy robots.txt to build folder
new CopyPlugin({
patterns: [
path.resolve(__dirname, "robots.txt")
]
})
],
module: {
rules: [
{
test: /\.(ts|js)x?$/,
exclude: /node_modules/,
use: [{
loader: "babel-loader",
options: { cacheDirectory: true }
}]
},
{
test: /\.eot(\?v=\d+.\d+.\d+)?$/,
use: [
{
loader: "url-loader",
options: {
name: "[name].[ext]"
}
}
]
},
{
test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/,
use: [
{
loader: "url-loader",
options: {
limit: 10000,
mimetype: "application/font-woff",
name: "[name].[ext]"
}
}
]
},
{
test: /\.[ot]tf(\?v=\d+.\d+.\d+)?$/,
use: [
{
loader: "url-loader",
options: {
limit: 10000,
mimetype: "application/octet-stream",
name: "[name].[ext]"
}
}
]
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
use: [
{
loader: "url-loader",
options: {
limit: 10000,
mimetype: "image/svg+xml",
name: "[name].[ext]"
}
}
]
},
{
test: /\.(jpe?g|png|gif|ico)$/i,
use: [
{
loader: "file-loader",
options: {
name: "[name].[ext]"
}
}
]
}
]
}
};
export default WebpackConfig;