Solutionunvalidated
Update the handler signature to `export async function POST(req)` (remove `res`) and return responses using `NextResponse`/`Response` (e.g., `return NextResponse.json(data, { status: 500 })`).
21b48b76-a673-4e90-a550-4461e2b68922
Update the handler signature to export async function POST(req) (remove res) and return responses using NextResponse/Response (e.g., return NextResponse.json(data, { status: 500 })).