Files
next-learn/dashboard/15-final/app/api/auth/[...nextauth]/route.ts
StephDietz fb8a985655 t
2023-09-21 15:46:58 -05:00

7 lines
170 B
TypeScript

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