2024-05-27 16:42:29 -05:00
|
|
|
/** @type {import('next-i18next').UserConfig} */
|
|
|
|
module.exports = {
|
|
|
|
i18n: {
|
|
|
|
defaultLocale: "en",
|
2024-09-12 16:06:36 -05:00
|
|
|
locales: [
|
|
|
|
"en",
|
|
|
|
"it",
|
|
|
|
"fr",
|
|
|
|
"zh",
|
2024-09-18 10:06:31 -05:00
|
|
|
"zh-TW",
|
2024-09-12 16:06:36 -05:00
|
|
|
"uk",
|
|
|
|
"pt-BR",
|
|
|
|
"ja",
|
|
|
|
"es",
|
|
|
|
"de",
|
|
|
|
"nl",
|
|
|
|
"tr",
|
|
|
|
],
|
2024-05-27 16:42:29 -05:00
|
|
|
},
|
2024-06-04 15:59:49 -05:00
|
|
|
reloadOnPrerender: process.env.NODE_ENV === "development",
|
2024-05-27 16:42:29 -05:00
|
|
|
};
|