mirror of
https://github.com/patdelphi/suanming.git
synced 2026-03-09 18:13:11 +08:00
35 lines
525 B
JSON
35 lines
525 B
JSON
{
|
|
"version": 2,
|
|
"builds": [
|
|
{
|
|
"src": "package.json",
|
|
"use": "@vercel/static-build",
|
|
"config": {
|
|
"distDir": "dist"
|
|
}
|
|
},
|
|
{
|
|
"src": "api/index.js",
|
|
"use": "@vercel/node"
|
|
}
|
|
],
|
|
"routes": [
|
|
{
|
|
"src": "/api/(.*)",
|
|
"dest": "/api/index.js"
|
|
},
|
|
{
|
|
"src": "/(.*)",
|
|
"dest": "/index.html"
|
|
}
|
|
],
|
|
"env": {
|
|
"NODE_ENV": "production",
|
|
"VERCEL": "1"
|
|
},
|
|
"functions": {
|
|
"api/index.js": {
|
|
"maxDuration": 30
|
|
}
|
|
}
|
|
} |