Folo/vercel.json

28 lines
485 B
JSON

{
"rewrites": [
{
"source": "/__debug_proxy",
"destination": "/__debug_proxy.html"
},
{
"source": "/__debug_proxy/:path*",
"destination": "/__debug_proxy.html"
},
{
"source": "/(.*)",
"destination": "/index.html"
}
],
"headers": [
{
"source": "/vendor/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=31536000, immutable"
}
]
}
]
}