import { NextRequest, NextResponse } from 'next/server'; export async function POST(request: NextRequest) { return NextResponse.json({ error: 'Webhooks disabled for static export' }, { status: 503 }); }