math-my-money/src/app/app.config.ts

6 lines
255 B
TypeScript
Raw Normal View History

2025-06-30 20:12:56 -04:00
import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZonelessChangeDetection } from '@angular/core';
export const appConfig: ApplicationConfig = {
2025-06-30 20:15:54 -04:00
providers: [provideBrowserGlobalErrorListeners(), provideZonelessChangeDetection()],
2025-06-30 20:12:56 -04:00
};