Auth0 Provider
리소스
설정
콜백 URL
https://example.com/api/auth/callback/auth0
환경 변수
AUTH_AUTH0_ID
AUTH_AUTH0_SECRET
설정
/auth.ts
import NextAuth from "next-auth"
import Auth0 from "next-auth/providers/auth0"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Auth0],
})