Developing a next.js application that uses next-auth for authentication. It is currently setup with GitHub as the only Provider.
In development, the authentication works just fine.
In production, after I click "Sign in with GitHub", I am directed to a 404.
I'm 99% sure this has to do with the callback URL I have setup in my GitHub OAuth app. For dev purposes it is set to http://localhost:3000/api/auth/callback/github. Obviously this is no good for a deployed app, but I don't know what to set it to. I've tried a couple of different URL's with no luck.
Other than the callback URL is there anything else I need to set up in my code to get this working in production?
It might be late but I faced the similar issue and tried all the solutions. Despite having everything correct the issue was still there and after wasting 2hrs finding every possible solution I came to know my code had a typo in the folder name
/{...nextauth}
containing the authentication file.The file dir should be exactly
app/api/auth/[...nextauth]/{your auth file}
Please take care of dirs :(