-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwebpack.config.js
More file actions
84 lines (81 loc) · 2.44 KB
/
webpack.config.js
File metadata and controls
84 lines (81 loc) · 2.44 KB
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
const {
DefinePlugin,
LoaderOptionsPlugin
} = require('webpack');
const libpath = require('path');
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
module.exports = [
// Main application
(env, { mode }) => {
const dst = 'app/dst';
const context = libpath.join(__dirname, 'src/main/');
const isProduction = mode === 'production';
const plugins = [
new CleanWebpackPlugin({
cleanOnceBeforeBuildPatterns: ['!index.html'],
verbose: false,
dry: false
}),
new DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(mode)
},
APP_VERSION: JSON.stringify((isProduction?'':'dev-')+process.env.npm_package_version)
}),
new LoaderOptionsPlugin({
options: {
context
}
})
];
return {
context,
entry: isProduction
? [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',
static: {
directory: libpath.join(__dirname, dst)
}
},
devtool: 'inline-source-map',
optimization: {
splitChunks: {
name: 'vendor',
chunks: 'initial'
}
}
};
},
];