Joaquín Sánchez

Results 1398 comments of Joaquín Sánchez

try adding `ignoreURLParametersMatching: [/^\/api\//],` inside `workbox` entry

you can find an explanation here: https://developer.chrome.com/docs/workbox/reference/workbox-build/ search `ignoreURLParametersMatching`, there is no anchor for the option

can you try add the initial slash `[/^\/api\//]`?

@thomasdigby offline support requires at least 1 html file, by default it is using `index.html` (default Vite entry point), if you don't have it in runtime, then the sw will...

@nevadavid check your cache headers: https://vite-pwa-org.netlify.app/deployment/#cache-control

You should also include any JS asset to be immutable, they have a hash included in the name, and so can be cached. Check this another issue: https://github.com/vite-pwa/vite-plugin-pwa/issues/446

50MB in assets is a huge application, maybe you can exclude images from sw precaching excluding them using `workbox.navigateFallbackDenylist`. If the application needs 50MB in js/css there is no way,...

@jslay88 there are a few things to do in the server side (cdn, Netlify, Apache, Tomcat, Vercel, AWS...): - any html page registering the sw and the sw with cache...

> Tested with an iPhone 6 via Safari > https://demo.epm.digital/pwatest/ The app is missing...

@RDjarbeng there is an open issue about this, the problem is that any entry in `src/assets` folder will be transformed, so we will need to access to the bundle generated...