Spaces:
Sleeping
Sleeping
| import { ApplicationConfig } from '@angular/core'; | |
| import {provideRouter, withComponentInputBinding} from '@angular/router'; | |
| import { routes } from './app.routes'; | |
| import { provideAnimationsAsync } from '@angular/platform-browser/animations/async'; | |
| import {provideHttpClient, withFetch} from "@angular/common/http"; | |
| export const appConfig: ApplicationConfig = { | |
| providers: [ | |
| provideRouter(routes, withComponentInputBinding()), | |
| provideAnimationsAsync(), | |
| provideAnimationsAsync(), | |
| provideHttpClient(withFetch()) | |
| ] | |
| }; | |