DEV Community

Discussion on: Cache Busting a React App

Collapse
 
gadeoli profile image
Gabriel Morais • Edited

"caches" variable? where it came from?

if (caches) {
      const names = await caches.keys();
      await Promise.all(names.map(name => caches.delete(name)));
}
Enter fullscreen mode Exit fullscreen mode