diff options
author | Grégoire Aubert <gregoire.aubert@sonarsource.com> | 2019-02-21 12:19:43 +0100 |
---|---|---|
committer | SonarTech <sonartech@sonarsource.com> | 2019-03-19 20:21:29 +0100 |
commit | 97d921d30e915e8b8f7f74d840d9fe331e613039 (patch) | |
tree | cb0f4d40d90b1dd8da2b4513ef4da98c8c3f5829 | |
parent | 68265915eeb4aabaacbcb74ff071ac821251d132 (diff) | |
download | sonarqube-97d921d30e915e8b8f7f74d840d9fe331e613039.tar.gz sonarqube-97d921d30e915e8b8f7f74d840d9fe331e613039.zip |
SONAR-11713 Change chunk filenames delimiter
-rw-r--r-- | server/sonar-web/config/webpack.config.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/sonar-web/config/webpack.config.js b/server/sonar-web/config/webpack.config.js index c17cbffb112..ebd2bffa49a 100644 --- a/server/sonar-web/config/webpack.config.js +++ b/server/sonar-web/config/webpack.config.js @@ -68,7 +68,10 @@ module.exports = ({ production = true }) => { } }, optimization: { - splitChunks: { chunks: 'all' } + splitChunks: { + chunks: 'all', + automaticNameDelimiter: '-' + } } }; |