-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.dev.js
More file actions
40 lines (31 loc) · 940 Bytes
/
webpack.config.dev.js
File metadata and controls
40 lines (31 loc) · 940 Bytes
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
// Load modules
const webpack = require('webpack')
const webpackTargetElectronRenderer = require('webpack-target-electron-renderer')
const path = require('path')
// Load base config
const baseConfig = require('./webpack.config.js')
// Create the config
const config = Object.create(baseConfig)
// Set entry points
config.entry = [
'webpack-hot-middleware/client?path=http://localhost:4000/__webpack_hmr&reload=true',
path.join(__dirname, '/frontend/root.js')
]
// Set output
config.output.publicPath = 'http://localhost:4000/dist/'
// Enable source maps
config.devtool = 'source-map'
// ES lint
config.eslint = {
parser: 'babel-eslint'
}
// Dev plugins
config.plugins.push(
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
)
// Specify Electron renderer
config.target = webpackTargetElectronRenderer(config)
// Export module
module.exports = config