1
0
Fork 0

Reduce storage usage

This commit is contained in:
Lim Chee Aun 2023-02-25 10:31:50 +08:00
parent 1f2dbb8e06
commit 8fdc430dd5

View file

@ -21,8 +21,8 @@ const imageRoute = new Route(
cacheName: 'remote-images', cacheName: 'remote-images',
plugins: [ plugins: [
new ExpirationPlugin({ new ExpirationPlugin({
maxEntries: 100, maxEntries: 50,
maxAgeSeconds: 7 * 24 * 60 * 60, // 7 days maxAgeSeconds: 3 * 24 * 60 * 60, // 3 days
purgeOnQuotaError: true, purgeOnQuotaError: true,
}), }),
new CacheableResponsePlugin({ new CacheableResponsePlugin({