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