Files
gastro-bot/vercel.json
2026-03-02 18:24:45 +05:00

25 lines
347 B
JSON

{
"rewrites": [
{
"source": "/old-path",
"destination": "/new-path"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "X-Custom-Header",
"value": "My Value"
}
]
}
],
"functions": {
"api/**/*.ts": {
"runtime": "nodejs20.x"
}
}
}