learnhouse/apps/web/app/api/auth/[...nextauth]/route.ts
2024-06-06 16:53:41 +01:00

6 lines
171 B
TypeScript

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