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: {
defaultLocale: 'en',
locales: isI18nStaging
? // Staging locales (https://docusaurus-i18n-staging.netlify.app/)
['en', 'zh-CN']
? // Staging locales: https://docusaurus-i18n-staging.netlify.app/
['en', 'zh-CN', 'ko', 'ja']
: // Production locales
['en', 'fr'],
},