Files
stack/apps/backend/api/index.ts
T
Konstantin WohlwendandCursor b11257fd5b Re-add Elysia backend transport
Keep the transport migration isolated on a dedicated branch so development can continue without blocking dev.

Co-authored-by: Cursor <[email protected]>
2026-07-13 12:41:55 -07:00

11 lines
221 B
TypeScript

import app from "../dist/vercel.mjs";
export const config = {
runtime: "nodejs",
maxDuration: 60,
};
export default function handler(request: Request): Response | Promise<Response> {
return app.handle(request);
}