marlon_
marlon_
NNuxt
Created by marlon_ on 12/12/2024 in #❓・help
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
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'
}
}
},
i18n: {
strategy: 'no_prefix', // also tried all the other strategies
defaultLocale: 'de',
customRoutes: 'config',
pages: {
collections: {
de: '/kollektionen'
}
}
},
10 replies