From eb6c21d083490096acef91886d30a2ca2f180da8 Mon Sep 17 00:00:00 2001 From: Viktor Tsvetkov <142901247+vtsvetkov-splunk@users.noreply.github.com> Date: Mon, 22 Apr 2024 16:53:47 +0200 Subject: [PATCH] hah --- ui/webpack.config.js | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/ui/webpack.config.js b/ui/webpack.config.js index 753d2bd64..4bdf95022 100644 --- a/ui/webpack.config.js +++ b/ui/webpack.config.js @@ -36,20 +36,21 @@ module.exports = merge(baseConfig, { }, ], }, - plugins: [new LicenseWebpackPlugin(), new ForkTsCheckerWebpackPlugin()], + plugins: [ + new LicenseWebpackPlugin({ + stats: { + warnings: false, + errors: true, + }, + }), + new ForkTsCheckerWebpackPlugin(), + ], devtool: 'source-map', resolve: { fallback: { querystring: require.resolve('querystring-es3') }, }, devServer: { hot: false, - client: { - overlay: { - errors: true, - warnings: false, // it throws warnings about lack of package licenses - runtimeErrors: true, - }, - }, proxy: [ { target: proxyTargetUrl,