NUXT_E2001

External navigation without external: true.

E2001

navigateTo() received an external URL but no { external: true } option. Nuxt requires explicit opt-in for external navigation to avoid accidentally redirecting users away from your app.

Resolution

navigateTo('https://example.com', { external: true })
Read more in Docs > API > Utils > Navigate To.
Was this helpful?