Commit a1664d09 authored by Mike Greiling's avatar Mike Greiling

Merge branch '22648-tilde-file-name' into 'master'

Replace tilde with hyphen as delimiter in JS chunks

Closes #22648

See merge request gitlab-org/gitlab!39874
parents 254c59ad d943e3e2
...@@ -267,6 +267,8 @@ module.exports = { ...@@ -267,6 +267,8 @@ module.exports = {
runtimeChunk: 'single', runtimeChunk: 'single',
splitChunks: { splitChunks: {
maxInitialRequests: 20, maxInitialRequests: 20,
// In order to prevent firewalls tripping up: https://gitlab.com/gitlab-org/gitlab/-/issues/22648
automaticNameDelimiter: '-',
cacheGroups: { cacheGroups: {
default: false, default: false,
common: () => ({ 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