mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 05:12:39 +00:00
16 lines
383 B
JavaScript
16 lines
383 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
|
|
},
|
|
localePath:
|
|
typeof window === 'undefined' ? require('path').resolve('./public/locales') : '/locales',
|
|
reloadOnPrerender: process.env.NODE_ENV === 'development'
|
|
};
|