2023-09-29 08:05:40 +02:00
|
|
|
// See: https://github.com/isaachinman/next-i18next
|
|
|
|
module.exports = {
|
|
|
|
i18n: {
|
|
|
|
defaultLocale: 'en',
|
2023-09-29 16:01:27 +02:00
|
|
|
locales: ['en', 'de', 'es', 'fr', 'nl', 'uk'],
|
|
|
|
},
|
|
|
|
react: {
|
|
|
|
nsMode: 'fallback',
|
2023-09-29 08:05:40 +02:00
|
|
|
},
|
|
|
|
interpolation: {
|
|
|
|
prefix: '{',
|
|
|
|
suffix: '}',
|
|
|
|
},
|
|
|
|
localeStructure: '{lng}/{ns}',
|
|
|
|
}
|