From d61fa45c92e38d44b986ea016b193fff1b33883b Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 16 Nov 2025 05:04:53 +0000 Subject: [PATCH] Add dummy default export to _notifications.ts cgen-f42d76217455493c8bd4eebadf03234e --- api/_notifications.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/api/_notifications.ts b/api/_notifications.ts index dd12410f..d4fcca01 100644 --- a/api/_notifications.ts +++ b/api/_notifications.ts @@ -40,3 +40,12 @@ export async function notifyOnboardingComplete(userId: string): Promise { "You've completed your profile setup. Let's get started!", ); } + +// Dummy default export for Vercel (this file is a utility, not a handler) +import type { VercelRequest, VercelResponse } from "@vercel/node"; +export default async function handler( + req: VercelRequest, + res: VercelResponse, +) { + return res.status(501).json({ error: "Not a handler" }); +}