Kevin Marrec
Kevin Marrec
@rahulkumarsingh73690 Do you have any updates on this ? With no reproduction for now as well as no news from the issue creator since 2 weeks, I may just close...
@rahulkumarsingh73690 How have you been able to get these installability issues ? I'm not able to see them 👇 
@rahulkumarsingh73690 I think this is simply caused by using Workbox in development, you should expect no issues if doing `nuxi build` + `nuxi start`/`nuxi preview` (production build), instead of running...
@rahulkumarsingh73690 Yes, it's described in https://github.com/kevinmarrec/nuxt-pwa-module#configuration, it's enabled for production by default, so you just need to remove `pwa.workbox.enabled` from your `nuxt.config.ts`.
@rahulkumarsingh73690 Yes. with last version of the module it should also delete the local service worker you had on `localhost` (before you needed to clear browser cache to totally remove...
@rahulkumarsingh73690 The adsense is an external script right ? I'm wondering why is it trying to apply a StaleWhileRevalidate strategy on it, does this happen with extra options you gave...
@rahulkumarsingh73690 Right now you can't exclude components from offline assets easily, you can use `pwa.workbox.templatePath` option to provide a custom Service Worker, copy https://github.com/kevinmarrec/nuxt-pwa-module/blob/main/templates/workbox/sw.js and change this section : https://github.com/kevinmarrec/nuxt-pwa-module/blob/bf937167c1012aba0e7d450524e8bbce6f9f22ac/templates/workbox/sw.js#L28-L40
@rahulkumarsingh73690 No, you can copy the template, change only this part, you could do : ```js request.destination === 'manifest' || request.destination === 'style' || (request.destination === 'script' && !request.url.includes('adsbygoogle')) ||...
@rahulkumarsingh73690 I don't think your error is related to this change, there must be something else that triggers the failure
Encountered same issue (I'm on WSL2 but my code is on the Subsystem), fixed with `vite.server.watch.usePolling`. # Reproduction ```vue const data = ref('a') {{ data }} ``` Then changes `ref('a')`...