import {
type ApplicationConfig,
provideZoneChangeDetection,
} from '@angular/core';
import {
provideClientHydration,
withEventReplay,
} from '@angular/platform-browser';
import { provideRouter } from '@angular/router';
import { provideIntlayer } from 'angular-intlayer';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [
provideZoneChangeDetection({ eventCoalescing: true }),
provideRouter(routes),
provideClientHydration(withEventReplay()),
provideIntlayer(),
],
};