pwf-website-new/vercel.json

25 lines
446 B
JSON

{
"version": 2,
"buildCommand": "npm ci && cd client && npm ci && npm run build",
"outputDirectory": "client/dist",
"installCommand": "npm ci",
"functions": {
"api/index.ts": {
"maxDuration": 30
}
},
"routes": [
{
"src": "/api/(.*)",
"dest": "/api/index.ts"
},
{
"src": "/assets/(.*)",
"dest": "/assets/$1"
},
{
"src": "/(.*)",
"dest": "/index.html"
}
]
}