bazar/app/api/auth/[...nextauth]/route.ts
2024-11-22 17:12:41 +07:00

8 lines
310 B
TypeScript

import NextAuth from "next-auth"
import { authOptions } from "@/constants/auth-options"
const handler = NextAuth(authOptions)
// Экспортируем напрямую функции GET и POST, без промежуточной переменной
export const GET = handler
export const POST = handler