ci(vercel): 添加no-store缓存控制头

配置Vercel的headers设置,禁止所有路径的缓存以确保实时性
This commit is contained in:
afoim
2025-07-11 00:46:22 +08:00
parent 2649ff80dc
commit 9c93e71fb2

View File

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