2024-12-29 03:04:17 +00:00
|
|
|
import NextAuth from "next-auth";
|
2024-12-29 05:59:25 +00:00
|
|
|
import { prisma } from "@/lib/prisma";
|
2024-12-29 06:53:51 +00:00
|
|
|
import GitHub from "next-auth/providers/github";
|
2024-12-29 05:59:25 +00:00
|
|
|
import { PrismaAdapter } from "@auth/prisma-adapter";
|
2024-12-29 03:04:17 +00:00
|
|
|
|
|
|
|
export const { handlers, signIn, signOut, auth } = NextAuth({
|
2024-12-29 05:59:25 +00:00
|
|
|
adapter: PrismaAdapter(prisma),
|
2024-12-29 06:53:51 +00:00
|
|
|
providers: [GitHub],
|
2024-12-29 03:04:17 +00:00
|
|
|
});
|