import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; import { provideRouter } from '@angular/router'; import { provideHttpClient, withInterceptors } from '@angular/common/http'; import { routes } from './app.routes'; import { LoggingInterceptor } from './services/interceptors/logging.interceptor'; import { RetryInterceptor } from './services/interceptors/retry.interceptor'; export const appConfig: ApplicationConfig = { providers: [ provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideHttpClient(withInterceptors([LoggingInterceptor, RetryInterceptor])), ], };