I'm using sw-toolbox for building progressive web app. All resources are getting cached as expected but they are not expiring on putting maxAgeSeconds.
toolbox.router.get("/test/(.*)", toolbox.cacheFirst, {
cache: {
maxEntries: 5, name: "list", maxAgeSeconds: 300, debug: !0
}
});
I have used CacheFirst
Strategy, and verified that resources are kicking in through service worker cache.