]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-11713 Change chunk filenames delimiter
authorGrégoire Aubert <gregoire.aubert@sonarsource.com>
Thu, 21 Feb 2019 11:19:43 +0000 (12:19 +0100)
committerSonarTech <sonartech@sonarsource.com>
Tue, 19 Mar 2019 19:21:29 +0000 (20:21 +0100)
server/sonar-web/config/webpack.config.js

index c17cbffb11258a0ec186979c83e8e3add010780a..ebd2bffa49af40bef8131d1e892313ba3d513abd 100644 (file)
@@ -68,7 +68,10 @@ module.exports = ({ production = true }) => {
       }
     },
     optimization: {
-      splitChunks: { chunks: 'all' }
+      splitChunks: {
+        chunks: 'all',
+        automaticNameDelimiter: '-'
+      }
     }
   };