Skip to content

Instantly share code, notes, and snippets.

@webmaxru
Created November 3, 2017 23:42
Show Gist options
  • Save webmaxru/d6f30fcfa5751698ceb977620431e2e3 to your computer and use it in GitHub Desktop.
Save webmaxru/d6f30fcfa5751698ceb977620431e2e3 to your computer and use it in GitHub Desktop.
Registering Angular Service Worker
import { ServiceWorkerModule } from '@angular/service-worker'
import { environment } from '../environments/environment';
...
@NgModule({
imports: [
...
environment.production ? ServiceWorkerModule.register('/ngsw-worker.js') : []
],
...
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment