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,