Next.js Discord

Discord Forum

Why does NextResponse.redirect not redirect me to the page specified

Unanswered
Japanese common catfish posted this in #help-forum
Open in Discord
Japanese common catfishOP
Why does my client not redirect using NextResponse.redirect method.

Here's my code:

// /app/api/route.ts
if (!token) return NextResponse.redirect(new URL('/signin', req.url));

5 Replies

Have you tried using redirect() from next/navigation?
Japanese common catfishOP
Does that work in apis?
Will try
Japanese common catfishOP
Get this error:

Error: NEXT_REDIRECT
@alfon