HTMLify
vercel.json
Views: 130 | Author: cody
{
"version": 2,
"builds": [
{
"src": "web/",
"use": "@vercel/static"
}
],
"routes": [
{ "handle": "filesystem" },
{
"src": "/(.*)",
"dest": "/web/index.html"
}
]
}