Vercel Route todas as páginas para um arquivo
// vercel.json
{
"rewrites": [
{
"source": "/(.*)",
"destination": "/index.html"
}
]
}
elcharitas