-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathwebpack.config.js
108 lines (103 loc) · 3.07 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
const path = require('path')
const ForkTsCheckerPlugin = require('fork-ts-checker-webpack-plugin')
const ESLintPlugin = require('eslint-webpack-plugin')
const HtmlPlugin = require('html-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 ? undefined : '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: { transpileOnly: true }
}
]
},
{
test: /\.css$/i,
use: ['style-loader', 'css-loader']
},
{
test: /\.svg$/i,
type: 'asset',
resourceQuery: /url/
},
{
test: /\.svg$/i,
resourceQuery: { not: [/url/] },
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'),
filename: 'js/[name].[contenthash:6].js',
clean: true
},
optimization: {
runtimeChunk: 'single',
splitChunks: {
chunks: 'initial',
minSize: 40000,
cacheGroups: {
vendor: {
test: /[\\/]node_modules[\\/]/,
chunks: 'all',
name: ({ context }) => (context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/) || [])[1]
}
}
}
},
plugins: [
...(production ? [] : [new ForkTsCheckerPlugin()]),
new ESLintPlugin(),
...pagesManifest.map(
({ name, vendors, data }) =>
new HtmlPlugin({
filename: `${name}.html`,
scriptLoading: 'module',
templateContent: ({ compilation }) => {
const assets = compilation.getAssets().map(({ name }) => name)
const script = assets.find(assetName => assetName.includes(`/${name}.`) && assetName.endsWith('.js'))
const vendorScripts = vendors
? assets.filter(name => vendors.find(vendor => name.includes(`/${vendor}.`) && name.endsWith('.js')))
: []
if (data && !Array.isArray(data)) data = [data]
return htmlTemplate([script, ...vendorScripts], data)
}
})
),
new CopyPlugin({
patterns: [
{
from: 'public',
globOptions: { ignore: ['**/index.js'] }
}
]
})
]
}
}