cache.default doesn't work but you can use a custom cache name, for example: ```ts let myCache = awa

cache.default doesn't work but you can use a custom cache name, for example:
let myCache = await caches.open('custom:cache');
await myCache.match(request);

See the documentation for more info.
Was this page helpful?