NuxtN
Nuxt13mo ago
marlon_

I18n Route translation

Hi, I have a question about route translation, I am working with a multilangual team and want to keep my folder structure and pages/ folder in english. But the main website will be in german only. Now I want to translate my routes to German but it doesnt really work via i18n, are there any other solutions:


My folder structure:
pages/
  index.vue
   collections/
        index.vue


nuxt.config

i18n: {
    strategy: 'no_prefix', // also tried all the other strategies
    defaultLocale: 'de',
    customRoutes: 'config',
    pages: {
      collections: {
        de: '/kollektionen'
      }
    }
  },
Was this page helpful?