Files
var-monorepo/apps/dispatch/app/api/auth/[...nextauth]/route.ts

7 lines
149 B
TypeScript

import NextAuth from 'next-auth';
import { options } from './auth';
const handler = NextAuth(options);
export { handler as GET, handler as POST };