Netlify 供應商
資源
設定
回調網址
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],
})