Files
coolify-examples/t3-nextauth/src/server/auth/index.ts
Andras Bacsai b9423600b7 asdf
2025-10-06 20:03:29 +02:00

11 lines
266 B
TypeScript

import NextAuth from "next-auth";
import { cache } from "react";
import { authConfig } from "./config";
const { auth: uncachedAuth, handlers, signIn, signOut } = NextAuth(authConfig);
const auth = cache(uncachedAuth);
export { auth, handlers, signIn, signOut };