Files
ProjectE/apps/web/app/api/auth/[...nextauth]/route.ts
T

7 lines
168 B
TypeScript
Raw Normal View History

import NextAuth from 'next-auth';
import { authOptions } from '@/lib/auth-config';
const handler = NextAuth(authOptions);
export { handler as GET, handler as POST };