link-stack/apps/link/app/api/[service]/webhooks/route.ts
2025-11-10 14:55:22 +01:00

6 lines
228 B
TypeScript

import { handleWebhook } from "@link-stack/bridge-ui";
// Force this route to be dynamic (not statically generated at build time)
export const dynamic = 'force-dynamic';
export { handleWebhook as GET, handleWebhook as POST };