Files
estimation-flow/src/auth.ts
T

8 lines
188 B
TypeScript
Raw Normal View History

import NextAuth from 'next-auth';
import { authConfig } from './auth.config';
export const { handlers, auth, signIn, signOut } = NextAuth(authConfig);
export const runtime = "nodejs";