How can i18n recognize the m/prefix when using nuxt/i18n in nuxt3
When I was using nuxt3 in conjunction with nuxt/i18n to create a website project, I chose the mobile solution for m-site, and because i18n was configured with a strategy of ‘prefix’and_default’, my current route would be en/m/xxx if there are multiple languages. However, ideally, I would prefer a route like m/en/xxx
page doesn’t change when I use router.back() in i18n-nuxt
when I navigate to “/profile” from “/” and then click to change language, route changes to “it/profile”
and then when I click on back button:
<Button @click="router.back()" :noBg="true">{{ t('back') }}</Button>
the page doesn’t navigate to “/it” it just back to “/profile”