2

enter image description here error

enter image description here main.ts

enter image description here app-config-service.ts

after i replaced bootstrapModule with bootstrapApplication in main.js and moved all providers in app-module to main.ts. i got this error.

mahbub kh
  • 41
  • 5

1 Answers1

1

Add provideHttpClient() in your main.ts providers.

 providers: [
  provideHttpClient(),
  { provide: APP_INITIALIZER, ... }
],
abolfazl sadeghi
  • 2,277
  • 2
  • 12
  • 20