Explicación: Servicios http
3. Configurar HttpClient
HttpClient se configura una vez, en main.ts.
src/main.ts
import { bootstrapApplication } from '@angular/platform-browser';
import { provideHttpClient } from '@angular/common/http';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, {
providers: [provideHttpClient()],
}).catch(console.error);