Files
blackroad-private-enhancements/vercel.json
blackboxprogramming 4acdf1f8ac
Some checks failed
☁️ Cloudflare Deployment / Deploy Workers (push) Has been cancelled
🚂 Railway Deployment / Deploy to Railway (push) Has been cancelled
🌐 Unified Multi-Platform Deployment / 🔍 Prepare (push) Has been cancelled
▲ Vercel Deployment / Deploy to Vercel (push) Has been cancelled
🌐 Unified Multi-Platform Deployment / 🚀 Deploy all platforms (push) Has been cancelled
🔒 Security Scanning / 📦 Dependencies (push) Failing after 40s
🔒 Security Scanning / 🔐 Secrets (push) Failing after 1m34s
💾 Automated Backup / 📦 Backup infrastructure (push) Failing after 45s
🏥 Infrastructure Health Monitoring / 🔍 Health Check (push) Successful in 2s
Initial commit — RoadCode import
2026-03-08 20:04:29 -05:00

27 lines
729 B
JSON

{
"version": 2,
"name": "blackroad-private",
"builds": [{"src": "package.json", "use": "@vercel/node"}],
"routes": [
{"src": "/api/(.*)", "dest": "/api/$1"},
{"src": "/(.*)", "dest": "/$1"}
],
"env": {
"NODE_ENV": "production",
"SERVICE_NAME": "blackroad-private"
},
"regions": ["sfo1", "iad1"],
"github": {"enabled": true, "autoAlias": true},
"headers": [{
"source": "/api/(.*)",
"headers": [
{"key": "Cache-Control", "value": "no-cache, no-store, must-revalidate"},
{"key": "X-Service-Name", "value": "blackroad-private"}
]
}],
"rewrites": [
{"source": "/health", "destination": "/api/health"},
{"source": "/version", "destination": "/api/version"}
]
}