rsnext/errors/middleware-new-signature.md
Javi Velasco c497b3a5ff
Improve deprecation errors for new middleware API (#30316)
Co-authored-by: JJ Kasper <jj@jjsweb.site>
Co-authored-by: Steven <steven@ceriously.com>
2021-10-26 17:03:39 +02:00

744 B

Deprecated Middleware API Signature

Why This Error Occurred

Your application is using a Middleware function that is using parameters from the deprecated API.

// _middleware.js
import { NextResponse } from 'next/server'

export function middleware(event) {
  if (event.request.nextUrl.pathname === '/blocked') {
    event.respondWith(
      new NextResponse(null, {
        status: 403,
      })
    )
  }
}

Possible Ways to Fix It

Update to use the new API for Middleware:

// _middleware.js
import { NextResponse } from 'next/server'

export function middleware(request) {
  if (request.nextUrl.pathname === '/blocked') {
    return new NextResponse(null, {
      status: 403,
    })
  }
}