Files
FastCheck/src/app/app.config.ts

14 lines
399 B
TypeScript
Raw Normal View History

2026-05-06 23:26:00 +04:00
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
2026-01-19 14:09:12 +04:00
import { provideRouter } from '@angular/router';
2026-05-06 23:26:00 +04:00
import { provideHttpClient } from '@angular/common/http';
2026-01-19 14:09:12 +04:00
import { routes } from './app.routes';
export const appConfig: ApplicationConfig = {
providers: [
provideBrowserGlobalErrorListeners(),
2026-01-23 00:52:04 +04:00
provideRouter(routes),
2026-05-06 23:26:00 +04:00
provideHttpClient()
2026-01-19 14:09:12 +04:00
]
};