NextAuth page not showing
Answered
Silver carp posted this in #help-forum
Silver carpOP
Code is here. Following from an example but everytime I try to go to the next auth page, I just get my 404
https://pastebin.com/kPa5vtnL
https://pastebin.com/kPa5vtnL
Answered by Clown
This wont work on the App Router. Use this instead
https://next-auth.js.org/configuration/initialization#route-handlers-app
https://next-auth.js.org/configuration/initialization#route-handlers-app
5 Replies
This wont work on the App Router. Use this instead
https://next-auth.js.org/configuration/initialization#route-handlers-app
https://next-auth.js.org/configuration/initialization#route-handlers-app
Answer
Notably you create
And you have to export the nextauth instance as GET and POST instead of directly exporting the NextAuth instance
/app/api/auth/[...nextauth]/route.tsAnd you have to export the nextauth instance as GET and POST instead of directly exporting the NextAuth instance
@Clown This wont work on the App Router. Use this instead
https://next-auth.js.org/configuration/initialization#route-handlers-app
Silver carpOP
Now when I go to localhost:3000/api/auth/signIn, I get this error below:
@Silver carp Now when I go to localhost:3000/api/auth/signIn, I get this error below:
Did you try localhost:3000/api/auth/signin
@Clown Did you try localhost:3000/api/auth/**signin**
Silver carpOP
Okay, that works.