Fix: translated pages not found on landing page

This commit is contained in:
faturachmanyusup
2022-10-27 01:16:03 +07:00
committed by Sara Gibbons
parent 464fa07d5d
commit c376d864d3

View File

@@ -25,12 +25,14 @@
relativePath: true,
auto2top: false,
alias: {
'/(README.*)': '/translations/$1',
'/((?!README).*)/README.(.*)': '$1/translations/README.$2',
'/(README.(.*))': '/translations/$1',
'#/((?!README).*)/README.(.*)': '$1/translations/README.$2',
'/((?!README).*)/((?!README).*)/README.(.*)': '$1/$2/translations/README.$3',
// handle English, since English files isn't in translation folders
'/(README$)': '/$1',
'/((?!README).*)/(README$)': '$1/$2'
'#/((?!README).*)/(README$)': '$1/$2',
'/((?!README).*)/((?!README).*)/(README$)': '$1/$2/$3'
}
}
</script>