diff options
Diffstat (limited to 'vnext')
-rw-r--r-- | vnext/package.json | 2 | ||||
-rw-r--r-- | vnext/webpack.config.js | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/vnext/package.json b/vnext/package.json index 782b57a3..ca7130ed 100644 --- a/vnext/package.json +++ b/vnext/package.json @@ -5,7 +5,7 @@ "scripts": { "test": "jest", "dist": "webpack --mode=production --progress", - "start": "webpack --mode=development serve" + "start": "webpack serve" }, "keywords": [], "author": "", diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index ed8686c1..a61cb0b5 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -96,8 +96,9 @@ module.exports = (env, argv) => { historyApiFallback: true, host: '0.0.0.0', hot: true, - inline: true, - overlay: true + client: { + overlay: true + } } }; |