Middleware directory

Nuxt provides a customizable route middleware framework you can use throughout your application, ideal for extracting code that you want to run before navigating to a particular route.

Route middleware run within the Vue part of your Nuxt app. Despite the similar name, they are completely different from server middleware, which are run in the Nitro server part of your app.

There are three kinds of route middleware:

  1. Anonymous (or inline) route middleware, which are defined directly in the pages where they are used.
  2. Named route middleware, which are placed in the middleware/ directory and will be automatically loaded via asynchronous import when used on a page.
  3. Global route middleware, which are placed in the middleware/ directory (with a .global suffix) and will be automatically run on every route change.

The first two kinds of route middleware can be defined in definePageMeta.

Format

Route middleware are navigation guards that receive the current route and the next route as arguments.

  1. export default defineNuxtRouteMiddleware((to, from) => {
  2. if (to.params.id === '1') {
  3. return abortNavigation()
  4. }
  5. return navigateTo('/')
  6. })

Nuxt provides two globally available helpers that can be returned directly from the middleware:

  1. navigateTo (route: string | Route) - Redirects to the given route, within plugins or middleware. It can also be called directly on the client side to perform page navigation.
  2. abortNavigation (err?: string | Error) - Aborts the navigation, with an optional error message.

Unlike, navigation guards in the vue-router docs, a third next() argument is not passed, and redirects or route cancellation is handled by returning a value from the middleware. Possible return values are:

  • nothing - does not block navigation and will move to the next middleware function, if any, or complete the route navigation
  • navigateTo('/') or navigateTo({ path: '/' }) - redirects to the given path
  • abortNavigation() - stops the current navigation
  • abortNavigation(error) - rejects the current navigation with an error

We recommend using the helper functions above for performing redirects or stopping navigation. Other possible return values described in the vue-router docs may work but there may be breaking changes in future.

Adding middleware dynamically

It is possible to add global or named route middleware manually using the addRouteMiddleware() helper function, such as from within a plugin.

  1. export default defineNuxtPlugin(() => {
  2. addRouteMiddleware('global-test', () => {
  3. console.log('this global middleware was added in a plugin and will be run on every route change')
  4. }, { global: true })
  5. addRouteMiddleware('named-test', () => {
  6. console.log('this named middleware was added in a plugin and would override any existing middleware of the same name')
  7. })
  8. })

Example: a named route middleware

  1. -| middleware/
  2. ---| auth.ts

In your page file, you can reference this route middleware

  1. <script setup>
  2. definePageMeta({
  3. middleware: ["auth"]
  4. // or middleware: 'auth'
  5. })
  6. </script>

Now, before navigation to that page can complete, the auth route middleware will be run.

🔎

Read and edit a live example in Examples > Routing > Middleware