Skip to content

Instantly share code, notes, and snippets.

@wdevon99
Created March 24, 2024 19:10
Show Gist options
  • Save wdevon99/9a16974eaf8b229e1615e010a020b9f3 to your computer and use it in GitHub Desktop.
Save wdevon99/9a16974eaf8b229e1615e010a020b9f3 to your computer and use it in GitHub Desktop.
const handler = NextAuth({
providers: [
GoogleProvider({
clientId: process.env.GOOGLE_ID ?? "",
clientSecret: process.env.GOOGLE_CLIENT_SECRET ?? "",
}),
GithubProvider({
clientId: process.env.GITHUB_ID ?? "",
clientSecret: process.env.GITHUB_CLIENT_SECRET ?? "",
}),
],
...
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment