org
1import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
2import { provideRouter } from '@angular/router';
3import { appRoutes } from './app.routes';
4
5export const appConfig: ApplicationConfig = {
6providers: [
7provideZoneChangeDetection({ eventCoalescing: true }),
8provideRouter(appRoutes),
9],
10};
11