Commit 83060667 authored by Phil Hughes's avatar Phil Hughes

Fixed locale frontend not picking up regions

This was caused by a webpack config issue that would only look in folders that only had lower case letters. This has been changed to include any word character

Closes #32913
parent 6ece9792
......@@ -100,7 +100,7 @@ var config = {
loader: 'file-loader',
},
{
test: /locale\/[a-z]+\/(.*)\.js$/,
test: /locale\/\w+\/(.*)\.js$/,
loader: 'exports-loader?locales',
},
]
......
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