mirror of
https://github.com/r-freeman/portfolio.git
synced 2025-04-04 16:24:31 +00:00
All checks were successful
Build And Publish / BuildAndPublish (push) Successful in 3m5s
16 lines
397 B
TypeScript
16 lines
397 B
TypeScript
import NextAuth from 'next-auth'
|
|
import GitHub from 'next-auth/providers/github'
|
|
|
|
export const {handlers, signIn, signOut, auth} = NextAuth({
|
|
providers: [
|
|
GitHub({
|
|
clientId: process.env.GITHUB_CLIENT_ID,
|
|
clientSecret: process.env.GITHUB_SECRET
|
|
})
|
|
],
|
|
callbacks: {
|
|
async redirect({url, baseUrl}) {
|
|
return url
|
|
}
|
|
}
|
|
}) |