diff --git a/src/auth.ts b/src/auth.ts new file mode 100644 index 0000000..52a5bb1 --- /dev/null +++ b/src/auth.ts @@ -0,0 +1,5 @@ +import NextAuth from "next-auth" + +export const { handlers, signIn, signOut, auth } = NextAuth({ + providers: [], +});