Files
fuwari/vercel.json
afoim b95e56d950 ci(vercel): 简化缓存控制头配置
移除冗余的缓存控制头,仅保留no-store配置以简化设置并保持相同效果
2025-07-11 02:22:35 +08:00

15 lines
191 B
JSON

{
"$schema": "https://openapi.vercel.sh/vercel.json",
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Cache-Control",
"value": "no-store"
}
]
}
]
}