diff --git a/src/app/app.config.ts b/src/app/app.config.ts index 751863a..d14633c 100644 --- a/src/app/app.config.ts +++ b/src/app/app.config.ts @@ -1,12 +1,13 @@ -import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core'; +import { ApplicationConfig } from '@angular/core'; import { provideRouter } from '@angular/router'; import { withComponentInputBinding } from '@angular/router'; +import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; import { routes } from './app.routes'; export const appConfig: ApplicationConfig = { providers: [ - provideZoneChangeDetection({ eventCoalescing: true }), + provideAnimationsAsync(), provideRouter(routes, withComponentInputBinding()), ], };