-
Notifications
You must be signed in to change notification settings - Fork 34
/
rspack.config.js
117 lines (112 loc) · 3.34 KB
/
rspack.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
import { join, resolve } from 'node:path'
import rspack from '@rspack/core'
import ReactRefreshPlugin from '@rspack/plugin-react-refresh'
import ESLintPlugin from 'eslint-webpack-plugin'
import { InjectManifest } from '@aaroon/workbox-rspack-plugin'
import HtmlPlugin from 'html-webpack-plugin'
import InjectAssetsPlugin from './scripts/inject-assets-plugin.js'
const __dirname = import.meta.dirname
export default (_, { mode }) => {
const production = mode === 'production'
return {
devServer: {
historyApiFallback: true,
port: 3000,
devMiddleware: { stats: 'errors-warnings' }
},
devtool: production ? 'source-map' : 'inline-source-map',
resolve: {
modules: [resolve(__dirname, 'src'), 'node_modules'],
extensions: ['.ts', '.tsx', '.js', '.jsx']
},
output: {
path: join(__dirname, 'build'),
publicPath: '/',
filename: 'scripts/[name].[contenthash:6].js',
clean: true
},
module: {
rules: [
{
test: /\.(t|j)sx?$/i,
exclude: /(node_modules)/,
use: {
loader: 'builtin:swc-loader',
options: {
jsc: {
parser: { syntax: 'typescript', tsx: true },
transform: {
react: { runtime: 'automatic', development: !production, refresh: !production }
},
target: 'es2017',
preserveAllComments: true
}
}
}
},
{
test: /\.css$/i,
use: [
'style-loader',
{
loader: 'css-loader',
options: { modules: true }
}
]
},
{
test: /\.svg$/i,
use: [{ loader: '@svgr/webpack', options: { dimensions: false } }]
},
{
test: /\.(png|jpe?g|gif|bmp|webp)$/i,
type: 'asset/resource',
generator: { filename: 'images/[name].[hash:6][ext]' }
}
]
},
optimization: {
realContentHash: false,
runtimeChunk: 'single',
splitChunks: {
chunks: 'initial',
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
chunks: 'all',
minSize: 10000,
name: (module, chunks) => {
const allChunksNames = chunks.map(({ name }) => name).join('.')
const moduleName = (module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/) || [])[1]
return `${moduleName}.${allChunksNames}`.replace('@', '')
}
}
}
}
},
plugins: [
...(production
? [
new InjectManifest({
include: [/fonts\//, /scripts\/.+\.js$/],
swSrc: join(__dirname, 'public', 'service-worker.js'),
compileSrc: false,
maximumFileSizeToCacheInBytes: 10000000
})
]
: [new ReactRefreshPlugin()]),
new ESLintPlugin({ extensions: ['js', 'ts', ' jsx', 'tsx'] }),
new HtmlPlugin({ template: 'public/index.html', scriptLoading: 'module' }),
new rspack.CopyRspackPlugin({
patterns: [
{
from: 'public',
globOptions: { ignore: ['**/index.html'] },
info: { minimized: true }
}
]
}),
new InjectAssetsPlugin()
]
}
}