25 lines
380 B
JSON
25 lines
380 B
JSON
{
|
|
"version": 2,
|
|
"buildCommand": "npm run build",
|
|
"builds": [
|
|
{
|
|
"src": "server/index.ts",
|
|
"use": "@vercel/node"
|
|
}
|
|
],
|
|
"routes": [
|
|
{
|
|
"src": "/api/(.*)",
|
|
"dest": "/server/index.ts"
|
|
},
|
|
{
|
|
"src": "/(.*)",
|
|
"dest": "/server/index.ts"
|
|
}
|
|
],
|
|
"functions": {
|
|
"server/index.ts": {
|
|
"maxDuration": 30
|
|
}
|
|
}
|
|
} |