32 lines
637 B
JSON
32 lines
637 B
JSON
{
|
|
"$schema": "https://openapi.vercel.sh/vercel.json",
|
|
"git": {
|
|
"deploymentEnabled": false
|
|
},
|
|
"installCommand": "npm ci",
|
|
"buildCommand": "npm run build",
|
|
"outputDirectory": "dist",
|
|
"rewrites": [
|
|
{
|
|
"source": "/__cad/server",
|
|
"destination": "/api/cad/server"
|
|
},
|
|
{
|
|
"source": "/__cad/catalog",
|
|
"destination": "/api/cad/catalog"
|
|
},
|
|
{
|
|
"source": "/__cad/download",
|
|
"destination": "/api/cad/download"
|
|
},
|
|
{
|
|
"source": "/__cad/reveal",
|
|
"destination": "/api/cad/reveal"
|
|
},
|
|
{
|
|
"source": "/(.*)",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
}
|