Skip to content

Instantly share code, notes, and snippets.

@samyok
Created February 12, 2022 22:34
Show Gist options
  • Save samyok/07c316e5d3cedcea4c08940609eb4c64 to your computer and use it in GitHub Desktop.
Save samyok/07c316e5d3cedcea4c08940609eb4c64 to your computer and use it in GitHub Desktop.
nextauth
import NextAuth from "next-auth"
import GithubProvider from "next-auth/providers/github"
export default NextAuth({
// Configure one or more authentication providers
providers: [
GithubProvider({
clientId: process.env.GITHUB_ID,
clientSecret: process.env.GITHUB_SECRET,
}),
// ...add more providers here
],
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment