We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ec3f8f commit 2ae258dCopy full SHA for 2ae258d
template/build/webpack.base.conf.js
@@ -44,9 +44,5 @@ module.exports = {
44
loaders: {
45
js: 'babel!eslint'
46
}
47
- },
48
- devServer: {
49
- historyApiFallback: true,
50
- noInfo: true
51
52
template/build/webpack.dev.conf.js
@@ -2,4 +2,10 @@ var config = require('./webpack.base.conf')
2
3
config.devtool = 'eval-source-map'
4
5
+config.devServer = {
6
+ host: '0.0.0.0',
7
+ historyApiFallback: true,
8
+ noInfo: true
9
+}
10
+
11
module.exports = config
0 commit comments