nandowalter-lm

Results 3 comments of nandowalter-lm

The same here, someone was able to get a workaround for this problem?

I'm experiencing this bug in macOS Safari 17.3.1 but also it occurs on iOS Safari 17.4. iOS 17.4 👇 ![image](https://github.com/angular/angular/assets/27080469/6ee19377-f560-4039-a0af-72778ae3b4db) ![image](https://github.com/angular/angular/assets/27080469/75784aea-99fd-430c-9f5c-add3eb8b7a48) I'm trying to avoid service worker fetch intercept for...

Hi guys, this seems the same as #53438 I solved bypassing the sw for all requests of external resources ``` self.addEventListener('fetch', event => { if (!event?.request?.url.startsWith(self.location.origin)) { event.stopImmediatePropagation(); } });...