pwf-website-new/vercel.json

29 lines
533 B
JSON

{
"version": 2,
"buildCommand": "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": "/(.*\\.(js|css|png|jpg|jpeg|gif|svg|ico|woff|woff2|ttf|eot))",
"dest": "/$1"
},
{
"src": "/(.*)",
"dest": "/index.html"
}
]
}