Joaquín Sánchez
Joaquín Sánchez
It seems the problem is the heuristic time approach in worbox window to detect false positives: you can try awaiting 1 minute between builds (https://github.com/GoogleChrome/workbox/blob/v7/packages/workbox-window/src/Workbox.ts#L414)
Cleanup the storage removing the sw, the logic is always 1 step behind, you don't need to wait 10 min. just 1 min. EDIT: I have no idea what's the...
I'm going to revert last change, I need to review what's happening in workbox-window and the register module here, sw events seems to be wrong.
I guess it is a problem with the heuristic time based and short sw periodic sync + update call (when precaching new sw and calling update)
@alexlapwood can you try this approach (update signals and effect, I'm not a solid expert)? ```ts const [updateFound, setUpdateFound] = createSignal(false) const [interval, registerInterval] = createSignal(undefined) createEffect(() => { if...
you can ignore the warnings, we'll review dependencies on next minor or major ('0.19.0` or `1.0.0`, check PR page)
how are you using the pwa plugin?
You need to run `pnpm install` from root folder and before running any example you also need to run from root folder `pnpm build`
can you add `type: 'module'` in PWA `devOptions` entry? Since sentry is adding an import to the sw in dev mode, this plugin doesn't include anything in the sw (it...
can you provide a minimal repro?