This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
83 lines (79 loc) · 1.54 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
const {
DefinePlugin,
HotModuleReplacementPlugin,
LoaderOptionsPlugin
} = require('webpack');
const libpath = require('path');
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = (env, { mode }) => {
const dst = 'app/dst';
const context = libpath.join(__dirname, 'src/');
const isProduction = mode === 'production';
const plugins = [
new CleanWebpackPlugin([dst], {
root: __dirname,
verbose: false,
dry: false,
exclude: ['index.html', 'assets']
}),
new DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(mode)
}
}),
new LoaderOptionsPlugin({
options: {
context
}
})
];
if (!isProduction) {
plugins.push(new HotModuleReplacementPlugin());
}
return {
context,
entry: isProduction
? ['@babel/polyfill', context]
: [
'webpack-dev-server/client?http://0.0.0.0:3000',
'webpack/hot/only-dev-server',
'react-hot-loader/patch',
context
],
output: {
path: libpath.join(__dirname, dst),
publicPath: 'http://localhost:3000/',
filename: '[name].js'
},
module: {
rules: [
{
test: /\.js(x?)$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.css$/,
use: ['style-loader', 'css-loader']
}
]
},
resolve: {
extensions: ['.js', '.jsx']
},
target: 'electron-renderer',
plugins,
devServer: {
hot: true,
port: 3000,
host: '0.0.0.0',
contentBase: libpath.join(__dirname, dst)
},
optimization: {
splitChunks: {
name: 'vendor',
chunks: 'initial'
}
}
};
};