Skip to content

Commit

Permalink
added next-auth back
Browse files Browse the repository at this point in the history
  • Loading branch information
epicdragon44 committed Sep 16, 2023
1 parent 600ba3c commit 2c6e13b
Show file tree
Hide file tree
Showing 3 changed files with 84 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/api/auth/[...nextauth]/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const handler = NextAuth({
// Configure one or more authentication providers
providers: [
GoogleProvider({
clientId: process.env.GOOGLE_ID,
clientSecret: process.env.GOOGLE_SECRET,
clientId: process.env.GOOGLE_ID!,
clientSecret: process.env.GOOGLE_SECRET!,
}),
// ...add more providers here
],
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"lucide-react": "^0.263.1",
"ms": "^2.1.3",
"next": "13.4.1",
"next-auth": "^4.23.1",
"postcss": "8.4.22",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
81 changes: 81 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2c6e13b

Please sign in to comment.