Files
vesta/app/api/auth/[...nextauth]/route.ts
T

10 lines
271 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { NextResponse } from 'next/server'
// NextAuth kaldırıldı
export async function GET() {
return NextResponse.json({ error: 'Not found' }, { status: 404 })
}
export async function POST() {
return NextResponse.json({ error: 'Not found' }, { status: 404 })
}