---
title: "NUXT_E2003"
description: "abortNavigation() called outside middleware."
canonical_url: "https://nuxt.com/docs/4.x/errors/e2003"
---
# E2003

`abortNavigation()` was called outside a route middleware. It can only cancel navigation from within a middleware handler, so calling it from a component, plugin, composable, or a callback that lost the middleware context fails.

## Resolution

Move the `abortNavigation()` call into the body of a `defineNuxtRouteMiddleware()` handler.

<read-more to="https://nuxt.com/docs/4.x/api/utils/abort-navigation">



</read-more>


## Sitemap

See the full [sitemap](https://nuxt.com/sitemap.md) for all pages.
