-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebpack.config.electron.js
59 lines (51 loc) · 1.27 KB
/
webpack.config.electron.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
/**
* Build config for electron 'Main Process' file
*/
const path = require('path')
const webpack = require('webpack')
const CleanWebpackPlugin = require('clean-webpack-plugin')
const appPackage = require('./app/package')
const externals = Object.keys(appPackage.dependencies || {})
module.exports = {
mode: 'production',
devtool: 'source-map',
entry: ['./app/main/main.js'],
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/
},
]
},
output: {
path: path.join(__dirname, 'app', 'main'),
filename: 'main.dist.js',
libraryTarget: 'commonjs2'
},
externals,
plugins: [
new CleanWebpackPlugin([
path.join('app', 'main', 'main.dist.*'),
]),
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production')
}
})
],
/**
* Set target to Electron specific node.js env.
* https://github.com/chentsulin/webpack-target-electron-renderer#how-this-module-works
*/
target: 'electron-main',
/**
* Disables webpack processing of __dirname and __filename.
* If you run the bundle in node.js it falls back to these values of node.js.
* https://github.com/webpack/webpack/issues/2010
*/
node: {
__dirname: false,
__filename: false
}
}