Why does my service worker still return an old response when it has Cache-Control: no-store?
Because `Cache-Control: no-store` controls HTTP caches, not the service worker's separate Cache Storage. A fetch handler (or a Workbox CacheFirst/StaleWhileRevalidate route) can keep returning a response it stored earlier, and a newer `no-store` response won't…
0 helpful votes