Next.js Discord

Discord Forum

const authOptions = {...} isn't letting me! Help!

Unanswered
let headache = null() posted this in #help-forum
Open in Discord
Hi there, im having issues with NextAuth options please help me out.

As you can see the first picture it all seems fine but if u notice then u will see there's two NextAuth() at the end and on the authOptions, so if i remove from authOptions it gives unimaginable errors as you can see on 2nd picture!


Please help me out, thanks for your precious time.

9 Replies

Mallow bee
move the whole authOptions object into the call at the bottom

export const handler = NextAuth({ 
  providers: [
the NextAuth function specifies a certain type for its first argument, and typescript can only infer that type correctly when you pass it directly.

If you define the object separately, it doesn't know it's going to be used in NextAuth, and then it's a wider type that doesn't give GithubProvider and the other functions the right context
@Mallow bee is that what you mean??
Mallow bee
you're missing export
but otherwise yes
then there's no double-wrapping NextAuth and the types should be happy
@Mallow bee then there's no double-wrapping NextAuth and the types should be happy
but once like i need to verify user i just call the handler right
Mallow bee
there's a few different ways to do it, I'd recommend following the docs here

https://next-auth.js.org/configuration/initialization#route-handlers-app