Last change
on this file was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 3 months ago |
split group project and individual project into two separate folders
|
-
Property mode
set to
100644
|
File size:
636 bytes
|
Line | |
---|
1 | import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
|
---|
2 | import { provideRouter } from '@angular/router';
|
---|
3 |
|
---|
4 | import { routes } from './app.routes';
|
---|
5 | import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
|
---|
6 | import {provideHttpClient, withInterceptors} from "@angular/common/http";
|
---|
7 | import {authInterceptor} from "./interceptors/auth.interceptor";
|
---|
8 |
|
---|
9 | export 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.