-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.dev.config.js
49 lines (43 loc) · 1.04 KB
/
webpack.dev.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
/* eslint-disable import/no-extraneous-dependencies */
const path = require('path');
const webpack = require('webpack');
const merge = require('webpack-merge');
const commonConfig = require('./webpack.common.config');
module.exports = merge(commonConfig, {
mode: 'development',
devtool: 'eval',
entry: {
main: [
'react-hot-loader/patch',
'webpack-dev-server/client?http://0.0.0.0:3001',
'webpack/hot/only-dev-server',
'./src/client/index.js',
],
},
output: {
path: path.join(__dirname, 'dist/'),
filename: '[name].[hash].js',
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NamedModulesPlugin(),
new webpack.NoEmitOnErrorsPlugin(),
],
devServer: {
disableHostCheck: true,
historyApiFallback: true,
host: '0.0.0.0',
port: 3001,
contentBase: path.join(__dirname, 'dist'),
hot: true,
proxy: {
'/api/**': {
target: {
host: 'localhost',
protocol: 'http:',
port: 3000,
},
},
},
},
});