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

22 lines
468 B
TypeScript
Raw Normal View History

2025-06-30 20:27:31 -04:00
import {
ApplicationConfig,
isDevMode,
provideBrowserGlobalErrorListeners,
provideZonelessChangeDetection,
} from '@angular/core';
import { provideStoreDevtools } from '@ngrx/store-devtools';
2025-06-30 20:12:56 -04:00
export const appConfig: ApplicationConfig = {
2025-06-30 20:27:31 -04:00
providers: [
provideBrowserGlobalErrorListeners(),
provideZonelessChangeDetection(),
provideStoreDevtools({
maxAge: 25,
logOnly: !isDevMode(),
autoPause: true,
trace: false,
traceLimit: 75,
}),
],
2025-06-30 20:12:56 -04:00
};