-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.ts
103 lines (99 loc) · 2.19 KB
/
webpack.config.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
import "webpack-dev-server"; // required for typings
import path from "node:path";
import MiniCssExtractPlugin from "mini-css-extract-plugin";
import HtmlWebpackPlugin from "html-webpack-plugin";
import { BundleAnalyzerPlugin } from "webpack-bundle-analyzer";
import type { Configuration } from "webpack";
const isProduction = process.env.NODE_ENV !== "development";
const customWebpackConfig = async (): Promise<Configuration> => {
const config: Configuration = {
entry: path.resolve(__dirname, "src/index.tsx"),
output: {
clean: true,
filename: isProduction ? "[name].[fullhash].js" : "index.js",
path: path.resolve(__dirname, "dist"),
publicPath: "/",
},
mode: isProduction ? "production" : "development",
module: {
rules: [
{
test: /\.(sa|sc|c)ss$/,
use: [
isProduction ? MiniCssExtractPlugin.loader : "style-loader",
{
loader: "css-loader",
options: {
modules: false,
},
},
"resolve-url-loader",
{
loader: "sass-loader",
options: {
sourceMap: true,
},
},
],
},
{
test: /\.(png|jpe?g|gif)$/i,
use: [
{
loader: "file-loader",
options: {
name: "[name].[ext]",
},
},
],
},
{
test: /\.(ts)x?$/,
use: ["babel-loader", "ts-loader"],
exclude: /node_modules/,
},
],
},
resolve: {
extensions: [".ts", ".tsx", ".js"],
},
plugins: [
...(isProduction
? [
new MiniCssExtractPlugin({
filename: "[name].[contenthash].css",
}),
new BundleAnalyzerPlugin({
analyzerMode: "static",
reportFilename: "client-bundle-report.html",
openAnalyzer: false,
}),
]
: []),
new HtmlWebpackPlugin({ template: "src/index.html" }),
],
optimization: {
minimize: isProduction,
...(isProduction
? {
splitChunks: {
cacheGroups: {
commons: {
test: /[/\\]node_modules[/\\]/,
name: "vendors",
chunks: "all",
},
},
},
}
: {}),
},
devServer: {
historyApiFallback: {
index: "/index.html",
},
},
};
return config;
};
export default customWebpackConfig();