Kuro091
Kuro091
https://developer.chrome.com/docs/workbox/using-plugins Question is how do I translate this piece of code: https://github.com/GoogleChrome/workbox/issues/2599#issuecomment-900304969 into vite pwa config without having to assign a custom base service-worker which involves having a statusPlugin inside...
# Issue Name ## Prerequisites Please answer the following questions for yourself before submitting an issue. - [x] I am running the latest plugin version - [x ] I am...
Async Function (RouteMatchCallback, RouteHandler, etc.) is not being included in the generated sw.js
Example: ```typescript const simpleTest = () => { return "abc" } cacheName: 'keys-and-remotes', urlPattern: async () => { return await simpleTest('/cars/keys-and-remotes'); }, handler: async ({ request }) => handleRouteGroupItemRequest(request, 'keys-and-remotes'),...