diff --git a/webpack.config.base.js b/webpack.config.base.js index 4ae05b6..1432620 100644 --- a/webpack.config.base.js +++ b/webpack.config.base.js @@ -18,6 +18,13 @@ module.exports = { context: ['/api', '/auth', '/hubs'], target: proxy, }, + client: { + overlay: { + errors: true, + warnings: false, + }, + progress: true, + }, }, optimization: { splitChunks: { diff --git a/webpack.config.prod.js b/webpack.config.prod.js index 3923b57..8a9f47a 100644 --- a/webpack.config.prod.js +++ b/webpack.config.prod.js @@ -6,7 +6,7 @@ module.exports = { mode: 'production', performance: { assetFilter: (assetFilename) => !/\.map$/.test(assetFilename), - hints: 'error', + hints: 'warning', maxAssetSize: 300 * 1024, // 300KB }, cache: false,