From 6626132bfea6ff683df8d0713c14c833e7cf824c Mon Sep 17 00:00:00 2001 From: Wouter Admiraal Date: Fri, 17 Jan 2020 14:19:33 +0100 Subject: [PATCH] Increase max asset size --- server/sonar-web/config/webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/sonar-web/config/webpack.config.js b/server/sonar-web/config/webpack.config.js index 8a37a0e82bf..8166e241149 100644 --- a/server/sonar-web/config/webpack.config.js +++ b/server/sonar-web/config/webpack.config.js @@ -205,7 +205,7 @@ module.exports = ({ production = true, release = false }) => { // ignore source maps and documentation chunk assetFilter: assetFilename => !assetFilename.endsWith('.map') && !assetFilename.startsWith('js/docs.'), - maxAssetSize: 300000, + maxAssetSize: 310000, hints: 'error' } : undefined -- 2.39.5