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