2025-12-06 11:38:19 +01:00
|
|
|
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
|
2025-12-06 08:46:55 +01:00
|
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
|
|
|
|
|
|
import { routes } from './app.routes';
|
2025-12-06 11:38:19 +01:00
|
|
|
import { provideClientHydration, withEventReplay } from '@angular/platform-browser';
|
2025-12-06 08:46:55 +01:00
|
|
|
|
|
|
|
|
export const appConfig: ApplicationConfig = {
|
2025-12-06 11:38:19 +01:00
|
|
|
providers: [
|
|
|
|
|
provideBrowserGlobalErrorListeners(),
|
|
|
|
|
provideRouter(routes), provideClientHydration(withEventReplay())
|
|
|
|
|
]
|
2025-12-06 08:46:55 +01:00
|
|
|
};
|