mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
26 lines
575 B
JavaScript
26 lines
575 B
JavaScript
// @ts-check
|
|
|
|
/**
|
|
* @type {import('next-i18next').UserConfig}
|
|
*/
|
|
module.exports = {
|
|
// https://www.i18next.com/overview/configuration-options#logging
|
|
debug: false,
|
|
i18n: {
|
|
defaultLocale: "en",
|
|
locales: ["en", "ko", "fr", "pt-BR", "pt-PT", "es"],
|
|
},
|
|
fallbackLng: {
|
|
default: ["en"],
|
|
},
|
|
|
|
reloadOnPrerender: process.env.NODE_ENV === "development",
|
|
|
|
/**
|
|
* @link https://github.com/i18next/next-i18next#6-advanced-configuration
|
|
*/
|
|
// saveMissing: false,
|
|
// strictMode: true,
|
|
// serializeConfig: false,
|
|
// react: { useSuspense: false }
|
|
}; |