-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathwebpack.config.js
53 lines (49 loc) · 1.09 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
const webpack = require('webpack')
const path = require('path')
const mode = process.env.NODE_ENV || 'development'
const plugins = []
let devtool = false
if (mode !== 'production') {
plugins.push(new webpack.HotModuleReplacementPlugin())
devtool = 'source-map'
}
const config = {
mode,
target: 'electron-renderer',
entry: (process.env.NODE_ENV === 'production'
? []
: [
'webpack-hot-middleware/client?reload=true&path=http://localhost:9000/__webpack_hmr',
]
).concat(['./src/index']),
module: {
rules: [
{
test: /\.js?$/,
use: ['babel-loader'],
exclude: /node_modules/,
},
{
test: /\.css$/,
loader: 'style-loader!css-loader',
},
{
test: /\.(png|woff)$/,
loader: 'url-loader?limit=100000',
},
],
},
output: {
path: path.resolve('electron', 'build'),
publicPath: 'http://localhost:9000/dist/',
filename: 'bundle.js',
},
resolve: {
alias: {
connector: path.resolve('connector', 'index.js'),
},
},
plugins,
devtool,
}
module.exports = config