Skip to content

Commit

Permalink
hah
Browse files Browse the repository at this point in the history
  • Loading branch information
vtsvetkov-splunk committed Apr 22, 2024
1 parent a505b13 commit eb6c21d
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions ui/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit eb6c21d

Please sign in to comment.