You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> To bypass **all** caching layers including Vercel's CDN, use a unique value like a timestamp: `?__bypass_cache__=1738438123`. The CDN caches based on the full URL, so a unique query string causes a cache miss at the edge, and then our code bypasses the internal caches too.
120
+
121
+
When cache bypass is active, the response includes an `X-Cache-Bypass` header showing which caches were bypassed:
122
+
123
+
```
124
+
X-Cache-Bypass: readme,npm-package
125
+
```
126
+
127
+
In development mode, cache bypass also logs to the console.
0 commit comments