From 00ff146fb45b64aa3a4278c05e4a4c476152e2b4 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Sat, 5 Nov 2022 19:07:47 +0300 Subject: Drop broken error-overlay-webpack-plugin --- vnext/webpack.config.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'vnext/webpack.config.js') diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js index 59e65b8d..8748ba93 100644 --- a/vnext/webpack.config.js +++ b/vnext/webpack.config.js @@ -4,12 +4,11 @@ const HtmlWebPackPlugin = require('html-webpack-plugin'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const CssMinimizerPlugin = require('css-minimizer-webpack-plugin'); const ESLintPlugin = require('eslint-webpack-plugin'); -const ErrorOverlayPlugin = require('error-overlay-webpack-plugin'); module.exports = (env, argv) => { const dev = argv.mode !== 'production'; const config = { - devtool: dev ? 'cheap-module-source-map' : false, + devtool: dev ? 'eval-source-map' : false, mode: dev ? 'development' : 'production', entry: { 'Juick': [ @@ -104,13 +103,13 @@ module.exports = (env, argv) => { failOnWarning: false, failOnError: true, fix: false - }), - new ErrorOverlayPlugin() + }) ], devServer: { historyApiFallback: true, hot: true, client: { + progress: true, overlay: true } } -- cgit v1.2.3