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

8 lines
311 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