14 lines
418 B
TypeScript
14 lines
418 B
TypeScript
import { provideHttpClient, withFetch } from '@angular/common/http';
|
|
import { ApplicationConfig, provideBrowserGlobalErrorListeners } from '@angular/core';
|
|
import { provideRouter } from '@angular/router';
|
|
|
|
import { routes } from './app.routes';
|
|
|
|
export const appConfig: ApplicationConfig = {
|
|
providers: [
|
|
provideBrowserGlobalErrorListeners(),
|
|
provideHttpClient(withFetch()),
|
|
provideRouter(routes)
|
|
]
|
|
};
|