nakarte

Source code of https://map.sikmir.ru (fork)
git clone git://git.sikmir.ru/nakarte
Log | Files | Refs | LICENSE

commit 9f548c49f154fdc1529fe050730d6e426d130da4
parent 2a937e99908fb71d7e8802c75fe6e264a86d4f34
Author: Sergey Orlov <wladimirych@gmail.com>
Date:   Tue, 24 Aug 2021 21:47:18 +0200

config: do not show compilation errors in browser in dev mode

Diffstat:
Mwebpack/webpack.config.js | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/webpack/webpack.config.js b/webpack/webpack.config.js @@ -183,6 +183,11 @@ module.exports = { devtool: false, stats: 'errors-warnings', bail: isProduction || isTesting, + devServer: { + client: { + overlay: false, + }, + }, entry: { app: paths.appIndexJs,