2026-04-26 14:27:08 +00:00
|
|
|
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
|
|
|
|
|
import { provideRouter } from '@angular/router';
|
2026-04-27 18:12:58 +00:00
|
|
|
import { provideHttpClient, withFetch } from '@angular/common/http';
|
|
|
|
|
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
|
2026-04-26 14:27:08 +00:00
|
|
|
|
|
|
|
|
import { routes } from './app.routes';
|
|
|
|
|
|
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
|
|
|
providers: [
|
|
|
|
|
provideBrowserGlobalErrorListeners(),
|
2026-04-27 18:12:58 +00:00
|
|
|
provideRouter(routes),
|
|
|
|
|
provideHttpClient(withFetch()),
|
|
|
|
|
provideAnimationsAsync(),
|
2026-04-26 14:27:08 +00:00
|
|
|
]
|
2026-04-27 18:12:58 +00:00
|
|
|
};
|