mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-02 11:36:01 +01:00
12 lines
363 B
JavaScript
12 lines
363 B
JavaScript
module.exports = {
|
|
// https://www.i18next.com/overview/configuration-options#logging
|
|
i18n: {
|
|
defaultLocale: 'en',
|
|
locales: ['en', 'de', 'en', 'es', 'fr', 'it', 'ja', 'nl', 'pl', 'ru', 'sl', 'sv', 'zh'],
|
|
fallbackLng: 'en',
|
|
localeDetection: true,
|
|
returnEmptyString: false
|
|
},
|
|
reloadOnPrerender: process.env.NODE_ENV === 'development',
|
|
};
|