UNPKG

create-t3-app

Version:

Create web application with the t3 stack

11 lines (6 loc) 266 B
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 };