Commit d943e3e2 authored by Lukas 'Eipi' Eipert's avatar Lukas 'Eipi' Eipert Committed by Mike Greiling

Replace tilde with hyphen as delimiter in JS chunks

We had trouble in the past with firewalls tripping over tildes in URLs.
So we are replacing them with a hyphen.
parent d795ab07
......@@ -267,6 +267,8 @@ module.exports = {
runtimeChunk: 'single',
splitChunks: {
maxInitialRequests: 20,
// In order to prevent firewalls tripping up: https://gitlab.com/gitlab-org/gitlab/-/issues/22648
automaticNameDelimiter: '-',
cacheGroups: {
default: false,
common: () => ({
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment