From 97d921d30e915e8b8f7f74d840d9fe331e613039 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Gr=C3=A9goire=20Aubert?= Date: Thu, 21 Feb 2019 12:19:43 +0100 Subject: [PATCH] SONAR-11713 Change chunk filenames delimiter --- server/sonar-web/config/webpack.config.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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: '-' + } } }; -- 2.39.5