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
|
'use strict'
const { merge } = require('webpack-merge')
const baseWebpackConfig = require('./base')
const cssWebpackConfig = require('./css')
const config = require('../project.config')
const { ProvidePlugin, DefinePlugin } = require('webpack')
module.exports = merge(baseWebpackConfig, cssWebpackConfig, {
entry: {
main: './src/renderer/main.js'
},
mode: 'development',
devtool: 'eval-cheap-module-source-map',
devServer: {
watchFiles: ['src/**/*'],
historyApiFallback: {
rewrites: [{ from: /./, to: '/index.html' }],
},
devMiddleware: {
publicPath: config.dev.publicPath,
},
open: false,
host: '0.0.0.0',
port: 'auto',
liveReload: true,
},
infrastructureLogging: {
level: 'warn',
},
stats: {
assets: false,
modules: false,
errorDetails: false,
},
})
|