This commit is contained in:
afoim
2025-07-11 01:03:04 +08:00
parent 0fc36315e1
commit 777fb09260
2 changed files with 16 additions and 1 deletions

3
.gitignore vendored
View File

@@ -25,3 +25,6 @@ pnpm-debug.log*
package-lock.json
bun.lockb
yarn.lock
.vscode

View File

@@ -5,7 +5,19 @@
"headers": [
{
"key": "Cache-Control",
"value": "no-store"
"value": "no-cache, no-store, must-revalidate, max-age=0"
},
{
"key": "Pragma",
"value": "no-cache"
},
{
"key": "Expires",
"value": "0"
},
{
"key": "Vercel-CDN-Cache-Control",
"value": "no-cache, no-store, must-revalidate, max-age=0"
}
]
}