app.config.ts raw

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