2025-04-02 17:18:39 +00:00
|
|
|
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
|
|
|
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
|
|
|
|
|
|
import { routes } from './app.routes';
|
|
|
|
|
|
|
|
|
|
export const appConfig: ApplicationConfig = {
|
2025-04-02 17:48:07 +00:00
|
|
|
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes)]
|
2025-04-02 17:18:39 +00:00
|
|
|
};
|