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