import { provideHttpClient, withFetch, withInterceptors, } from '@angular/common/http'; import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; import { provideClientHydration } from '@angular/platform-browser'; import { provideFileRouter, requestContextInterceptor } from '@analogjs/router'; export const appConfig: ApplicationConfig = { providers: [ provideZoneChangeDetection({ eventCoalescing: true }), provideFileRouter(), provideHttpClient( withFetch(), withInterceptors([requestContextInterceptor]) ), provideClientHydration(), ], };