NuxtJS - How to prevent page transition when i18n chganging lang url

Viewed 9

I have a transition animation when changing the page: NuxtConfig:

layoutTransition: 'fade',
  layoutTransition: {
    name: "fade",
    mode: "out-in"
  },
  transition: {
    name: 'fade',
    mode: 'out-in'
  },

It makes the page fade out when switching to another page, But when changing the language, when the url of the page changes, the language is first changed, and then the extinction animation occurs. How to disable animation in such use case?

0 Answers
Related