try to insert "provideHttpClient(withInterceptorsFromDi())" in the providers list on main.single-spa.ts
const lifecycles = singleSpaAngular({
bootstrapFunction: singleSpaProps => {
singleSpaPropsSubject.next(singleSpaProps);
return bootstrapApplication(AppComponent, {
providers: [...getSingleSpaExtraProviders(),provideHttpClient(withInterceptorsFromDi()) ],
});
},
template: '<app-root />',
Router,
NavigationStart,
NgZone,
});