workorder-desk/vercel.json

13 lines
581 B
JSON

{
"$schema": "https://openapi.vercel.sh/vercel.json",
"framework": "vite",
"installCommand": "npm ci",
"buildCommand": "npm run build -w @workorders/shared && npm run build -w frontend",
"outputDirectory": "frontend/dist",
"rewrites": [
{ "source": "/api/(.*)", "destination": "https://workorders-api.onrender.com/api/$1" },
{ "source": "/health", "destination": "https://workorders-api.onrender.com/health" },
{ "source": "/ready", "destination": "https://workorders-api.onrender.com/ready" },
{ "source": "/(.*)", "destination": "/index.html" }
]
}