-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
webpack.rules.js
58 lines (58 loc) · 1.18 KB
/
webpack.rules.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
module.exports = [
{
test: /\.jsx?$/,
exclude: [/(node_modules|public\/)/],
use: 'babel-loader'
},
{
test: /\.jsx?$/,
include: /node_modules/,
use: 'react-hot-loader/webpack'
},
{
test: /\.css$/,
exclude: [/node_modules/],
use: ['style-loader', 'css-loader?importLoaders=true'],
},
{
test: /\.(woff|woff2)$/,
exclude: [/node_modules/],
type: 'asset/resource',
generator: {
filename: 'font/[contenthash][ext][query]'
}
},
{
test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/,
exclude: [/node_modules/],
type: 'asset/resource',
mimetype: 'application/octet-stream',
generator: {
filename: 'font/[contenthash][ext][query]'
}
},
{
test: /\.svg(\?v=\d+\.\d+\.\d+)?$/,
exclude: [/node_modules/],
type: 'asset/resource',
mimetype: 'image/svg+xml',
},
{
test: /\.gif/,
exclude: [/node_modules/],
type: 'asset/resource',
mimetype: 'image/gif',
},
{
test: /\.jpg/,
exclude: [/node_modules/],
type: 'asset/resource',
mimetype: 'image/jpg',
},
{
test: /\.png/,
exclude: [/node_modules/],
type: 'asset/resource',
mimetype: 'image/png',
}
];