Netlify Provider
리소스
설정
Callback URL
https://example.com/api/auth/callback/netlify
환경 변수
AUTH_NETLIFY_ID
AUTH_NETLIFY_SECRET
설정
/auth.ts
import NextAuth from "next-auth"
import Netlify from "next-auth/providers/netlify"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Netlify],
})