Folo/vercel.json

78 lines
1.7 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": "/login",
"destination": "https://follow-external-ssr.vercel.app/login"
},
{
"source": "/redirect",
"destination": "https://follow-external-ssr.vercel.app/redirect"
},
{
"source": "/external-dist/:path*",
"destination": "https://follow-external-ssr.vercel.app/external-dist/:path*"
},
{
"source": "/dist-external/:path*",
"destination": "https://follow-external-ssr.vercel.app/dist-external/:path*"
},
{
"source": "/((?!assets|vendor|locales|dist-external|external-dist/).*)",
"destination": "/index.html"
}
],
"redirects": [
{
"source": "/feed/:id",
"destination": "/share/feeds/:id",
"permanent": true
},
{
"source": "/list/:id",
"destination": "/share/lists/:id",
"permanent": true
},
{
"source": "/profile/:path*",
"destination": "/share/users/:path*",
"permanent": true
}
],
"headers": [
{
"source": "/vendor/(.*)",
"headers": [
{
"key": "Cache-Tag",
"value": "follow-assets"
}
]
},
{
"source": "/assets/(.*)",
"headers": [
{
"key": "Cache-Tag",
"value": "follow-assets"
}
]
}
]
}