Replies: 1 comment
-
I have the exact same issue and I had to disable the custom routes until a solution is found ! |
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
-
I have an app which has its default locale set to
de
.But I want to code everything in english, therefore the pages are named like
pages/offers.vue
Inside the page i define the
de
pathI would expect that I can now use my file name to get the translated routes:
Which doesn't work, it still returns
/offers
. I guess becausede
is my default locale it takes the filename as thede
route and doesn't take into account mydefineI18nRoute
. Has anyone a similar setup and found a solution for when your default locale is not matching your page file names?My config is:
Beta Was this translation helpful? Give feedback.
All reactions