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