Finance / vercel.json
BOLO-KESARI
Update vercel.json for static frontend serving
04ae08d
raw
history blame contribute delete
291 Bytes
{
"version": 2,
"name": "stocklyze-frontend",
"cleanUrls": true,
"trailingSlash": false,
"rewrites": [
{
"source": "/(css|js|images|assets)/(.*)",
"destination": "/frontend/$1/$2"
},
{
"source": "/(.*)",
"destination": "/frontend/$1"
}
]
}