mirror of
https://github.com/vee1e/workorder-desk.git
synced 2026-09-01 17:57:11 +00:00
13 lines
581 B
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" }
|
|
]
|
|
}
|