2022-02-06 19:16:49 +01:00
|
|
|
// See: https://github.com/isaachinman/next-i18next
|
|
|
|
module.exports = {
|
|
|
|
i18n: {
|
|
|
|
defaultLocale: 'en',
|
|
|
|
locales: ['en', 'de', 'es', 'fr', 'nl'],
|
2022-02-13 15:45:27 +01:00
|
|
|
defaultNS: 'common',
|
2022-02-10 20:06:14 +01:00
|
|
|
},
|
|
|
|
interpolation: {
|
|
|
|
prefix: '{',
|
|
|
|
suffix: '}',
|
|
|
|
},
|
|
|
|
localeStructure: '{lng}/{ns}',
|
2022-02-06 19:16:49 +01:00
|
|
|
}
|