import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; import { provideRouter, RouteReuseStrategy } from '@angular/router'; import { provideHttpClient, withInterceptors } from '@angular/common/http'; import { provideAnimations } from '@angular/platform-browser/animations'; import { routes } from './app.routes'; import { AuthInterceptor } from './interceptors/auth.interceptor'; export const appConfig: ApplicationConfig = { providers: [ provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideHttpClient(withInterceptors([AuthInterceptor])), provideAnimations(), ] };