add vercel.json config file, force all paths to load /index.html for single-page app mode with routerMode:history

This commit is contained in:
Joe Pea 2023-01-22 17:18:13 -08:00
parent bcd8c2586f
commit 61b94dd466

3
vercel.json Normal file
View File

@ -0,0 +1,3 @@
{
"rewrites": [{ "source": "/(.*)", "destination": "/index.html" }]
}