Add this to vercel.json. I initially had the routes key as well because I am doing client side routing with react router dom
{
"builds": [
{
"src": "package.json",
"use": "@vercel/static-build",
"config": {
"distDir": "dist"
}
}
]
}