Discord 提供商
资源
设置
回调 URL
https://example.com/api/auth/callback/discord
环境变量
AUTH_DISCORD_ID
AUTH_DISCORD_SECRET
配置
/auth.ts
import NextAuth from "next-auth"
import Discord from "next-auth/providers/discord"
export const { handlers, auth, signIn, signOut } = NextAuth({
providers: [Discord],
})