add signIn example

This commit is contained in:
Tony D'Addeo
2024-12-17 14:26:20 -06:00
committed by lucas-neynar
parent e1a87ff00f
commit cd4149abd5
9 changed files with 539 additions and 20 deletions

View File

@@ -0,0 +1,6 @@
import NextAuth from "next-auth"
import { authOptions } from "~/auth"
const handler = NextAuth(authOptions)
export { handler as GET, handler as POST }