Files
fuwari/vercel.json
afoim 9c93e71fb2 ci(vercel): 添加no-store缓存控制头
配置Vercel的headers设置,禁止所有路径的缓存以确保实时性
2025-07-11 00:46:22 +08:00

14 lines
138 B
JSON

{
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "no-store"
}
]
}
]
}