/** * @copyright nhcarrigan * @license Naomi's Public License * @author Naomi Carrigan */ import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZoneChangeDetection, } from "@angular/core"; import { provideRouter, withComponentInputBinding } from "@angular/router"; import { routes } from "./app.routes"; export const appConfig: ApplicationConfig = { providers: [ provideBrowserGlobalErrorListeners(), provideZoneChangeDetection({ eventCoalescing: true }), provideRouter(routes, withComponentInputBinding()), ], };