14 lines
384 B
TypeScript
14 lines
384 B
TypeScript
import {ApplicationConfig, provideZoneChangeDetection} from '@angular/core';
|
|
import {provideRouter} from '@angular/router';
|
|
import {CookieService} from 'ngx-cookie-service';
|
|
|
|
import {routes} from './app.routes';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideZoneChangeDetection({eventCoalescing: true}),
|
|
provideRouter(routes),
|
|
CookieService,
|
|
]
|
|
};
|