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

14 lines
418 B
TypeScript
Raw Normal View History

2026-01-19 14:09:12 +04:00
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
import { provideRouter } from '@angular/router';
2026-01-23 00:52:04 +04:00
import { provideHttpClient, withFetch } 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),
provideHttpClient(withFetch())
2026-01-19 14:09:12 +04:00
]
};