diff --git a/.gitignore b/.gitignore index dcac26195..49d464e26 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,6 @@ pnpm-debug.log* package-lock.json bun.lockb yarn.lock + +.vscode + diff --git a/vercel.json b/vercel.json index 4fdcc9304..b653a9d69 100644 --- a/vercel.json +++ b/vercel.json @@ -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" } ] }