-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
105 lines (102 loc) · 2.43 KB
/
webpack.config.js
File metadata and controls
105 lines (102 loc) · 2.43 KB
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
import path from 'path';
import { fileURLToPath } from 'url';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import TerserPlugin from 'terser-webpack-plugin';
const __dirname = path.dirname(fileURLToPath(import.meta.url));
export default (env, argv) => {
const isProduction = argv.mode === 'production';
return {
entry: './src/index.ts',
output: {
path: path.resolve(__dirname, 'dist'),
filename: isProduction ? '[name].[contenthash].js' : '[name].js',
clean: true,
},
resolve: {
extensions: ['.ts', '.tsx', '.js', '.json'],
alias: {
'@': path.resolve(__dirname, 'src'),
},
fallback: {
fs: false,
path: false,
},
},
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/,
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
},
],
},
plugins: [
new HtmlWebpackPlugin({
template: './src/index.html',
minify: isProduction && {
removeComments: true,
collapseWhitespace: true,
removeAttributeQuotes: true,
},
}),
],
devServer: {
static: [
{
directory: path.join(__dirname, 'dist'),
},
{
directory: path.join(__dirname, 'assets'),
publicPath: '/assets',
},
],
compress: true,
port: 8080,
hot: true,
https: false,
open: true,
historyApiFallback: true,
},
devtool: isProduction ? 'source-map' : 'eval-source-map',
optimization: {
minimize: isProduction,
minimizer: [
new TerserPlugin({
terserOptions: {
compress: {
drop_console: isProduction,
},
},
extractComments: false,
}),
],
splitChunks: {
chunks: 'all',
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
priority: 10,
reuseExistingChunk: true,
},
three: {
test: /[\\/]node_modules[\\/]three[\\/]/,
name: 'three',
priority: 20,
reuseExistingChunk: true,
},
},
},
},
performance: {
hints: isProduction ? 'warning' : false,
maxEntrypointSize: 512000,
maxAssetSize: 512000,
},
};
};