11 lines
359 B
JSON
11 lines
359 B
JSON
{
|
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
|
"bunVersion": "1",
|
|
"installCommand": "bun install",
|
|
"rewrites": [
|
|
{ "source": "/api", "destination": "/api/index.ts" },
|
|
{ "source": "/api/(.*)", "destination": "/api/index.ts" },
|
|
{ "source": "/public/(.*)", "destination": "/public/$1" },
|
|
{ "source": "/(.*)", "destination": "/public/$1" }
|
|
]
|
|
} |