source: bus-n-go-pavel-216049/bus-n-go-frontend/src/app/app.config.ts@ dedbf60

Last change on this file since dedbf60 was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 4 weeks ago

split group project and individual project into two separate folders

  • Property mode set to 100644
File size: 636 bytes
RevLine 
[baf4cc4]1import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
2import { provideRouter } from '@angular/router';
3
4import { routes } from './app.routes';
5import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
6import {provideHttpClient, withInterceptors} from "@angular/common/http";
7import {authInterceptor} from "./interceptors/auth.interceptor";
8
9export const appConfig: ApplicationConfig = {
10 providers: [
11 provideZoneChangeDetection({ eventCoalescing: true }),
12 provideRouter(routes),
13 provideAnimationsAsync(),
14 provideHttpClient(withInterceptors([authInterceptor]))
15 ]
16};
Note: See TracBrowser for help on using the repository browser.