Files
FastGPT/projects/app/next-i18next.config.js
2023-09-24 18:02:09 +08:00

13 lines
214 B
JavaScript

//next-i18next.config.js
/**
* @type {import('next-i18next').UserConfig}
*/
module.exports = {
i18n: {
defaultLocale: 'zh',
locales: ['en', 'zh', 'zh-Hans', 'zh-CN'],
localeDetection: false
}
};