mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +00:00
16 lines
369 B
JavaScript
16 lines
369 B
JavaScript
//next-i18next.config.js
|
|
/**
|
|
* @type {import('next-i18next').UserConfig}
|
|
*/
|
|
|
|
module.exports = {
|
|
i18n: {
|
|
defaultLocale: 'zh',
|
|
locales: ['en', 'zh'],
|
|
localeDetection: true
|
|
},
|
|
localePath:
|
|
typeof window === 'undefined' ? require('path').resolve('./public/locales') : '/public/locales',
|
|
reloadOnPrerender: process.env.NODE_ENV === 'development'
|
|
};
|