web/source/src/app/app.config.ts
terralilly85 c4e0cfc5ce feature/web2 (#1)
Co-authored-by: Tara Wilson <tara@taraformed.com>
Reviewed-on: #1
2025-02-20 20:52:40 -05:00

9 lines
310 B
TypeScript

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