chore(v2): enable more staging locales (#4458)

This commit is contained in:
Sébastien Lorber 2021-03-18 18:05:42 +01:00 committed by GitHub
parent 83d043ecb3
commit 03f4a92035
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,8 +58,8 @@ const isI18nStaging = process.env.I18N_STAGING === 'true';
i18n: { i18n: {
defaultLocale: 'en', defaultLocale: 'en',
locales: isI18nStaging locales: isI18nStaging
? // Staging locales (https://docusaurus-i18n-staging.netlify.app/) ? // Staging locales: https://docusaurus-i18n-staging.netlify.app/
['en', 'zh-CN'] ['en', 'zh-CN', 'ko', 'ja']
: // Production locales : // Production locales
['en', 'fr'], ['en', 'fr'],
}, },