Multilingual application?
Which module are you currently using for multilingual applications with Nuxt 3? Any recommendations?
7 Replies
I think there currently aren't many. You can try out the beta of the official nuxt/i18n, but for me, it did not work.
Thanks. It works. But you need change routing to no_prefix.
Unknown User•3y ago
Message Not Public
Sign In & Join Server To View
Yes
Unknown User•2y ago
Message Not Public
Sign In & Join Server To View
In your nuxt.config.js
i18n: {
//…
no_prefix: false
},
@uziki Everything is explained in the docs 🙂 https://v8.i18n.nuxtjs.org/guide/routing-strategies#configuration
Just read through it
Routing & Strategies
@nuxtjs/i18n overrides Nuxt default routes to add locale prefixes to every URL with routing strategies.