forked from chaiNNer-org/chaiNNer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.rules.js
67 lines (66 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
const isDevelopment = process.env.NODE_ENV !== 'production';
module.exports = [
// ... existing loader config ...
{
test: /\.[jt]sx?$/,
exclude: /node_modules/,
use: {
loader: require.resolve('babel-loader'),
options: {
exclude: /node_modules/,
presets: ['@babel/preset-typescript', '@babel/preset-react'],
plugins: [
...[isDevelopment && require.resolve('react-refresh/babel')].filter(Boolean),
[
'@babel/plugin-transform-react-jsx',
{
runtime: 'automatic',
},
],
...(isDevelopment
? [
[
'i18next-extract',
{
outputPath: './src/common/locales/{{locale}}/{{ns}}.json',
keyAsDefaultValueForDerivedKeys: true,
discardOldKeys: true,
},
],
]
: []),
],
},
},
},
{
test: /\.(jpe?g|png|gif|svg)$/i,
use: [
{
loader: 'file-loader',
options: {
query: {
name: 'assets/[name].[ext]',
},
},
},
{
loader: 'image-webpack-loader',
options: {
query: {
mozjpeg: {
progressive: true,
},
gifsicle: {
interlaced: true,
},
optipng: {
optimizationLevel: 7,
},
},
},
},
],
},
// ... existing loader config ...
];