mirror of
https://github.com/dergigi/boris.git
synced 2025-12-17 06:34:24 +01:00
Without this configuration, page refreshes result in 404 errors because Vercel tries to serve non-existent files instead of routing through index.html for client-side routing.
10 lines
97 B
JSON
10 lines
97 B
JSON
{
|
|
"rewrites": [
|
|
{
|
|
"source": "/(.*)",
|
|
"destination": "/index.html"
|
|
}
|
|
]
|
|
}
|
|
|