From 134cd3896400847c08a4c4f01d6ac46a20e7f195 Mon Sep 17 00:00:00 2001 From: cfngc4594 Date: Wed, 12 Mar 2025 15:01:26 +0800 Subject: [PATCH] feat(auth): create auth.ts for authentication setup --- src/auth.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/auth.ts 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: [], +});