waste-prediction-api / vercel.json
ALAMDIENG's picture
fix: configure vercel.json builds to only package frontend static assets
054ece0
Raw
History Blame Contribute Delete
328 Bytes
{
"version": 2,
"cleanUrls": true,
"builds": [
{ "src": "frontend/**", "use": "@vercel/static" }
],
"routes": [
{ "src": "/static/(.*)", "dest": "/frontend/$1" },
{ "src": "/api/(.*)", "dest": "https://alamdieng-waste-prediction-api.hf.space/api/$1" },
{ "src": "/(.*)", "dest": "/frontend/$1" }
]
}