diff options
Diffstat (limited to 'docs/src/pages/index.astro')
-rw-r--r-- | docs/src/pages/index.astro | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/src/pages/index.astro b/docs/src/pages/index.astro index 234d938ad..e156ca7eb 100644 --- a/docs/src/pages/index.astro +++ b/docs/src/pages/index.astro @@ -3,8 +3,10 @@ import Layout from '../layouts/MainLayout.astro'; --- <script> - // Redirect the user, based on their browser language. - const KNOWN_LANGUAGES = ['en', 'nl', 'fi']; + // This is some wip redirect code based on the browser language. + // A vercel.json redirect is enforced in production, so no user should ever see this page. + // Remove the vercel.json redirect when this is ready. + const KNOWN_LANGUAGES = ['en', 'nl', 'fi','zh-CN','zh-TW']; let newLang = (window.navigator.userLanguage || window.navigator.language || 'en').substr(0, 2); if (newLang === 'en') { window.location.pathname = '/getting-started'; |