-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathwebpack.config.js
119 lines (112 loc) · 3.51 KB
/
webpack.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
118
119
const path = require('path')
const ReactRefreshPlugin = require('@pmmmwh/react-refresh-webpack-plugin')
const ReactRefreshTypeScript = require('react-refresh-typescript')
const ForkTsCheckerPlugin = require('fork-ts-checker-webpack-plugin')
const ESLintPlugin = require('eslint-webpack-plugin')
const HtmlPlugin = require('html-webpack-plugin')
const { InjectManifest } = require('workbox-webpack-plugin')
const CopyPlugin = require('copy-webpack-plugin')
const pagesManifest = require('./src/pages-manifest.json')
const htmlTemplate = require('./public/index')
module.exports = (_, { mode }) => {
const production = mode === 'production'
return {
devServer: {
historyApiFallback: true,
port: 3000,
devMiddleware: { stats: 'errors-warnings' }
},
cache: { type: 'filesystem' },
devtool: production ? 'source-map' : 'inline-source-map',
resolve: {
modules: [path.resolve(__dirname, 'src'), 'node_modules'],
extensions: ['.ts', '.tsx', '.js', '.jsx']
},
module: {
rules: [
{
test: /\.(t|j)sx?$/i,
exclude: /node_modules/,
use: [
{
loader: 'ts-loader',
options: {
getCustomTransformers: () => ({
before: production ? [] : [ReactRefreshTypeScript()]
}),
transpileOnly: true
}
}
]
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader']
},
{
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]' }
}
]
},
output: {
path: path.join(__dirname, 'build'),
publicPath: '/',
filename: 'scripts/[name].[contenthash:6].js',
clean: true
},
optimization: {
runtimeChunk: 'single',
splitChunks: {
chunks: 'initial',
cacheGroups: {
vendors: {
test: /[\\/]node_modules[\\/]/,
chunks: 'all',
minSize: 100000,
name: (module, chunks) => {
const allChunksNames = chunks.map(({ name }) => name).join('.')
const moduleName = (module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/) || [])[1]
return `${moduleName}.${allChunksNames}`
}
}
}
}
},
plugins: [
...(production
? [
new InjectManifest({
include: [/fonts\//, /scripts\/.+\.js$/],
swSrc: path.join(__dirname, 'public', 'service-worker.js')
})
]
: [new ReactRefreshPlugin(), new ForkTsCheckerPlugin(), new ESLintPlugin()]),
new HtmlPlugin({
scriptLoading: 'module',
templateContent: ({ compilation }) => {
const assets = compilation.getAssets().map(({ name }) => name)
const pages = pagesManifest.map(({ chunk, path, data }) => {
const scripts = assets.filter(name => new RegExp(`[/.]${chunk}\\.(.+)\\.js$`).test(name))
if (data && !Array.isArray(data)) data = [data]
return { path, scripts, data }
})
return htmlTemplate(pages)
}
}),
new CopyPlugin({
patterns: [
{
from: 'public',
globOptions: { ignore: ['**/index.js'] }
}
]
})
]
}
}