workbox.routing.registerRoute(
new RegExp('\.(png|svg|jpg|jpeg)$'),
workbox.strategies.cacheFirst({
cacheName: 'Images-cache',
plugins: [
new workbox.expiration.Plugin({
maxAgeSeconds: 24 * 60 * 60, // cache for 1 days
maxEntries: 50,
purgeOnQuotaError: true
})
]
})
);