Fix vercel.json schema validation

This commit is contained in:
gpt-engineer-app[bot]
2025-10-29 19:36:07 +00:00
parent c85bdcb070
commit f70c9e33ee

View File

@@ -1,19 +1,11 @@
{ {
"rewrites": [ "rewrites": [
{ {
"source": "/api/(.*)", "source": "/",
"destination": "/api/$1"
},
{
"source": "/(.*\\.(?:js|css|jpg|jpeg|png|gif|svg|ico|woff|woff2|ttf|eot|webp|json|xml))$",
"continue": true
},
{
"source": "/[^.]+",
"destination": "/api/ssrOG" "destination": "/api/ssrOG"
}, },
{ {
"source": "/", "source": "/:path((?!.*\\.).*)",
"destination": "/api/ssrOG" "destination": "/api/ssrOG"
} }
], ],