1 Commits

Author SHA1 Message Date
eneller
e24f9794c5 fix: serviceworker doesnt intercept other urls 2025-03-04 23:07:45 +01:00
2 changed files with 13 additions and 3 deletions

View File

@@ -25,6 +25,14 @@
"/**/*.(svg|cur|jpg|jpeg|png|apng|webp|avif|gif|otf|ttf|woff|woff2)" "/**/*.(svg|cur|jpg|jpeg|png|apng|webp|avif|gif|otf|ttf|woff|woff2)"
] ]
} }
},
{
"name": "excluded-redirects",
"installMode": "lazy",
"updateMode": "lazy",
"resources": {
"urls": [ "/**" ]
}
} }
] ]
} }

View File

@@ -7,8 +7,10 @@ import { provideAnimationsAsync } from '@angular/platform-browser/animations/asy
import { provideServiceWorker } from '@angular/service-worker'; import { provideServiceWorker } from '@angular/service-worker';
export const appConfig: ApplicationConfig = { export const appConfig: ApplicationConfig = {
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideClientHydration(withEventReplay()), provideAnimationsAsync('noop'), provideServiceWorker('ngsw-worker.js', { providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes),
enabled: !isDevMode(), provideClientHydration(withEventReplay()), provideAnimationsAsync('noop'),
registrationStrategy: 'registerWhenStable:30000' provideServiceWorker('ngsw-worker.js', {
enabled: !isDevMode(),
registrationStrategy: 'registerWhenStable:30000'
})] })]
}; };