You need to sign in or sign up before continuing.
app.config.ts 421 Bytes
Newer Older
1 2 3 4
import { ApplicationConfig, provideZoneChangeDetection } from '@angular/core';
import { provideRouter } from '@angular/router';

import { routes } from './app.routes';
5
import { provideAnimationsAsync } from '@angular/platform-browser/animations/async';
6 7

export const appConfig: ApplicationConfig = {
8
  providers: [provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes), provideAnimationsAsync()]
9
};