Replies: 1 comment
-
Please provide a reproducible example, and if you find an issue, create an issue (not a discussion). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello 😁, until now I was working with the locales 'en' and 'de', today I added 'es'. Adding this new locale is giving me problems in the url of the site, to all sites, no matter if it is 'de' or 'en' it is adding the /es like this localhost:3000/es, this is only happening when adding 'es', I tried adding 'mx' and it works correctly, however, I need to use 'es', does anyone know why this is happening?
My next-i18next.config.js file looks like this:
module.exports = { i18n: { defaultLocale: 'en', locales: ['en', 'de', 'es'], }, };
Beta Was this translation helpful? Give feedback.
All reactions