Files
dashcaddy.net/src/app/api/webhooks/route.ts
T

6 lines
206 B
TypeScript

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