diff options
author | Wouter Admiraal <wouter.admiraal@sonarsource.com> | 2020-01-17 14:19:33 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2020-02-10 20:46:16 +0100 |
commit | 6626132bfea6ff683df8d0713c14c833e7cf824c (patch) | |
tree | ec118954befc7ca80f9f37cb2e19a4779755373e /server/sonar-web | |
parent | f2a2df85dd9f5deca1c6424a4efb06f3c2e4dacb (diff) | |
download | sonarqube-6626132bfea6ff683df8d0713c14c833e7cf824c.tar.gz sonarqube-6626132bfea6ff683df8d0713c14c833e7cf824c.zip |
Increase max asset size
Diffstat (limited to 'server/sonar-web')
-rw-r--r-- | server/sonar-web/config/webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 |