bazar/app/api/auth/[...nextauth]/route.ts
2024-11-23 14:35:31 +07:00

8 lines
317 B
TypeScript

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