8 lines
146 B
JavaScript
8 lines
146 B
JavaScript
/** @type {import('next-i18next').UserConfig} */
|
|
module.exports = {
|
|
i18n: {
|
|
defaultLocale: 'en-US',
|
|
locales: ['en-US', 'zh-CN'],
|
|
},
|
|
}
|