aboutsummaryrefslogtreecommitdiff
path: root/vnext
diff options
context:
space:
mode:
Diffstat (limited to 'vnext')
-rw-r--r--vnext/webpack.config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js
index ee8b94c9..3493184c 100644
--- a/vnext/webpack.config.js
+++ b/vnext/webpack.config.js
@@ -91,7 +91,6 @@ module.exports = (env, argv) => {
template: './src/index.html',
filename: './index.html'
}),
- new ErrorOverlayPlugin(),
new ESLintPlugin({ files: 'src', lintDirtyModulesOnly: true, failOnWarning: false, failOnError: true, fix: false })
],
devServer: {
@@ -99,7 +98,8 @@ module.exports = (env, argv) => {
historyApiFallback: true,
host: '0.0.0.0',
hot: true,
- inline: true
+ inline: true,
+ overlay: true
}
};