This commit is contained in:
Bernd Heidemann
2024-09-04 12:05:49 +02:00
parent 405c1552cf
commit b5031afce0
18 changed files with 136 additions and 347 deletions

View File

@ -1,8 +1,8 @@
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { ApplicationConfig } from '@angular/core';
import { provideRouter } from '@angular/router';
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes)]
providers: [provideRouter(routes)]
};