stack/apps/backend/vercel.json
Konstantin Wohlwend 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 <cursoragent@cursor.com>
2026-07-13 12:41:55 -07:00

25 lines
527 B
JSON

{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": null,
"rewrites": [
{ "source": "/(.*)", "destination": "/api" }
],
"crons": [
{
"path": "/api/latest/internal/email-queue-step",
"schedule": "* * * * *"
},
{
"path": "/api/latest/internal/external-db-sync/poller",
"schedule": "* * * * *"
},
{
"path": "/api/latest/internal/external-db-sync/sequencer",
"schedule": "* * * * *"
}
],
"github": {
"autoJobCancelation": false
}
}