rsnext/errors/next-response-next-in-app-route-handler.md
Wyatt Johnson 74ca99c866
Server Router Improvements (#45716)
This adds updated matching handle for the server to separate out the matching and executing of different route types e.g. page routes, API routes, and app routes. 

Co-authored-by: JJ Kasper <22380829+ijjk@users.noreply.github.com>
2023-02-15 00:16:45 +00:00

14 lines
618 B
Markdown

# `NextResponse.next()` used in a App Route Handler
#### Why This Error Occurred
App Route Handler's do not currently support using the `NextResponse.next()` method to forward to the next middleware because the handler is considered the endpoint to the middleware chain. Handlers must always return a `Response` object instead.
#### Possible Ways to Fix It
Remove the `NextResponse.next()` and replace it with a correct response handler.
### Useful Links
- [`Response`](https://developer.mozilla.org/en-US/docs/Web/API/Response)
- [`NextResponse`](https://nextjs.org/docs/api-reference/next/server#nextresponse)