feat(auth): create auth.ts for authentication setup

This commit is contained in:
cfngc4594 2025-03-12 15:01:26 +08:00
parent 78d04a34f2
commit 134cd38964

5
src/auth.ts Normal file
View File

@ -0,0 +1,5 @@
import NextAuth from "next-auth"
export const { handlers, signIn, signOut, auth } = NextAuth({
providers: [],
});