Folo/vercel.json

85 lines
1.8 KiB
JSON

{
"rewrites": [
{
"source": "/__debug_proxy",
"destination": "/__debug_proxy.html"
},
{
"source": "/__debug_proxy/:path*",
"destination": "/__debug_proxy.html"
},
{
"source": "/share/:path*",
"destination": "https://follow-external-ssr.vercel.app/share/:path*"
},
{
"source": "/og/:path*",
"destination": "https://follow-external-ssr.vercel.app/og/:path*"
},
{
"source": "/external-dist/:path*",
"destination": "https://follow-external-ssr.vercel.app/:path*"
},
{
"source": "/((?!assets|vendor|locales/).*)",
"destination": "/index.html"
}
],
"redirects": [
{
"source": "/feed/:id",
"destination": "/share/feeds/:id",
"permanent": true
},
{
"source": "/list/:id",
"destination": "/share/lists/:id",
"permanent": true
}
],
"headers": [
{
"source": "/vendor/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=604800, immutable"
},
{
"key": "CDN-Cache-Control",
"value": "max-age=604800"
},
{
"key": "Vercel-CDN-Cache-Control",
"value": "max-age=604800"
},
{
"key": "Cloudflare-CDN-Cache-Control",
"value": "max-age=604800"
}
]
},
{
"source": "/assets/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "public, max-age=604800, immutable"
},
{
"key": "CDN-Cache-Control",
"value": "max-age=604800"
},
{
"key": "Vercel-CDN-Cache-Control",
"value": "max-age=604800"
},
{
"key": "Cloudflare-CDN-Cache-Control",
"value": "max-age=604800"
}
]
}
]
}