2024-05-27 16:42:29 -05:00
|
|
|
/** @type {import('next-i18next').UserConfig} */
|
|
|
|
module.exports = {
|
|
|
|
i18n: {
|
|
|
|
defaultLocale: "en",
|
2024-09-12 16:00:26 -05:00
|
|
|
locales: ["en", "it", "fr", "zh", "uk", "pt-BR", "ja", "es"],
|
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
|
|
|
};
|