-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.js
58 lines (55 loc) · 1.02 KB
/
webpack.common.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
import path from "path";
import HtmlWebpackPlugin from 'html-webpack-plugin';
import * as url from 'url';
const __dirname = url.fileURLToPath(new URL('.', import.meta.url));
const config = {
context: path.join(__dirname, "src"),
entry: {
app: ["./index.tsx"]
},
optimization: {
moduleIds: "deterministic",
runtimeChunk: "single",
splitChunks: {
chunks: 'all',
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
name: "vendors",
chunks: "all",
reuseExistingChunk: true,
idHint: "vendors",
},
},
},
},
module: {
rules: [{
test: /\.tsx?$/,
exclude: /node_modules/,
loader: 'ts-loader'
},
{
test: /\.svg/,
type: 'asset/inline'
}]
},
resolve:
{
extensions: ['.tsx', '.ts', '.js'],
},
target: ["web", "es2022"],
plugins: [new HtmlWebpackPlugin({
templateContent: `
<html>
<head>
<meta charset="utf-8"/>
<title>QL</title>
</head>
<body>
<div id="root"></div>
</body>
</html>
` })],
};
export default config;