-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.electron.js
68 lines (58 loc) · 1.72 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
60
61
62
63
64
65
66
67
68
/**
* Build config for electron 'Main Process' file
*/
import webpack from 'webpack';
import merge from 'webpack-merge';
import baseConfig from './webpack.config.base';
export default merge(baseConfig, {
devtool: 'source-map',
entry: ['babel-polyfill', './main.development'],
// 'main.js' in root
output: {
path: __dirname,
filename: './main.js'
},
plugins: [
// Minify the output
new webpack.optimize.UglifyJsPlugin({
sourceMap: true,
compressor: {
warnings: false,
}
}),
// Add source map support for stack traces in node
// https://github.com/evanw/node-source-map-support
new webpack.BannerPlugin(
{
banner: 'require(\'source-map-support\').install();',
raw: true,
entryOnly: false
}
),
// NODE_ENV should be production so that modules do not perform certain development checks
new webpack.DefinePlugin(
{
'process.env': {
NODE_ENV: JSON.stringify('production')
}
})
],
/**
* Set targed to Electron speciffic 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
},
externals: [
'font-awesome',
'source-map-support'
]
});