Files
Homarr/next-i18next.config.js

28 lines
474 B
JavaScript
Raw Normal View History

2022-08-22 09:50:54 +02:00
module.exports = {
// https://www.i18next.com/overview/configuration-options#logging
i18n: {
defaultLocale: 'en',
locales: [
'en',
'de',
'es',
'fr',
'it',
'ja',
'ko',
'lol',
'nl',
'pl',
'pt',
'ru',
'sl',
'sv',
'uk',
],
2022-08-28 16:28:17 +02:00
fallbackLng: 'en',
2022-08-24 17:58:14 +02:00
localeDetection: true,
returnEmptyString: false,
2022-08-22 09:50:54 +02:00
},
reloadOnPrerender: process.env.NODE_ENV === 'development',
};