Skip to content

Instantly share code, notes, and snippets.

@VicAv99
Created March 29, 2019 15:29
Show Gist options
  • Select an option

  • Save VicAv99/5f410bcce1cfdda4e30d67a25a4ba770 to your computer and use it in GitHub Desktop.

Select an option

Save VicAv99/5f410bcce1cfdda4e30d67a25a4ba770 to your computer and use it in GitHub Desktop.
// app.module.ts
import { HttpClientModule, HTTP_INTERCEPTORS } from ‘@angular/common/http’;
import { BlockerInterceptor } from ‘./core/interceptors/blocker.interceptor’;
providers: [
{ provide: HTTP_INTERCEPTORS, useClass: BlockerInterceptor, multi: true }
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment