Files
Homarr/next-i18next.config.js

12 lines
363 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',
2022-08-27 19:26:48 +02:00
locales: ['en', 'de', 'en', 'es', 'fr', 'it', 'ja', 'nl', 'pl', 'ru', 'sl', 'sv', 'zh'],
2022-08-28 16:28:17 +02:00
fallbackLng: 'en',
2022-08-24 17:58:14 +02:00
localeDetection: true,
2022-08-28 16:28:17 +02:00
returnEmptyString: false
2022-08-22 09:50:54 +02:00
},
reloadOnPrerender: process.env.NODE_ENV === 'development',
};