Files
seedit/vercel.json
plebeius 47b847f8d9 Add rewrite rule to vercel.json
Introduces a rewrite rule to route all requests to index.html, which is useful for single-page applications using client-side routing.
2026-01-30 12:04:38 +08:00

9 lines
165 B
JSON

{
"rewrites": [
{ "source": "/(.*)", "destination": "/index.html" }
],
"buildCommand": "yarn build",
"outputDirectory": "build",
"framework": "vite"
}