mirror of
https://github.com/plebbit/seedit.git
synced 2026-02-07 20:41:04 -05:00
Introduces a rewrite rule to route all requests to index.html, which is useful for single-page applications using client-side routing.
9 lines
165 B
JSON
9 lines
165 B
JSON
{
|
|
"rewrites": [
|
|
{ "source": "/(.*)", "destination": "/index.html" }
|
|
],
|
|
"buildCommand": "yarn build",
|
|
"outputDirectory": "build",
|
|
"framework": "vite"
|
|
}
|