SupportOps-Env / vercel.json
Gaurav711's picture
Configure vercel.json to enforce static builder and bypass auto-detected Python preset
db9aec3
Raw
History Blame Contribute Delete
229 Bytes
{
"builds": [
{
"src": "index.html",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/ui",
"dest": "/index.html"
},
{
"src": "/",
"dest": "/index.html"
}
]
}