Skip to content

Instantly share code, notes, and snippets.

@VicAv99
Created March 29, 2019 16:16
Show Gist options
  • Save VicAv99/8c66abe8e0f66e035ba4501ec262e378 to your computer and use it in GitHub Desktop.
Save VicAv99/8c66abe8e0f66e035ba4501ec262e378 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’;
import { PizzaInterceptor } from ‘./core/interceptors / pizza.interceptor’;
providers: [
{ provide: HTTP_INTERCEPTORS, useClass: BlockerInterceptor, multi: true },
{ provide: HTTP_INTERCEPTORS, useClass: PizzaInterceptor, multi: true }
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment