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

6 lines
255 B
TypeScript
Raw Normal View History

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