Next.js Discord

Discord Forum

Redirect not working as expected in prod

Answered
Anay-208 posted this in #help-forum
Open in Discord
In production, it is redirecting users to a different origin.
code:
      return NextResponse.redirect(new URL('/?incorrect', request.url), 303)

its redirecting to localhost/?incorrect
Answered by Anay-208
I had to edit the package.json as follows:
"start": "next start -p 80 --hostname 0.0.0.0"

where 0.0.0.0 is my vps ip
View full answer

1 Reply

I had to edit the package.json as follows:
"start": "next start -p 80 --hostname 0.0.0.0"

where 0.0.0.0 is my vps ip
Answer