Alexandr Ucstein
Alexandr Ucstein
@ullalaaron Problem exists because TranslateLoader uses HttpClient as dependency but this client could not be initialized before HTTP_INTERCEPTORS. So you just can not provide class which injects HttpClient (or other...
Im not familiar with Angular Universal SSR, anyway there is unsafe usage of global window object. I see there is properly injected document object in the interceptor constructor > @Inject(DOCUMENT)...
@jo-arroyo Is it realy necessary to create another issue? :) Replacing window object with properly injected document object should help with this issue in Angular Unversal SSR
@jasonnutter Hi, I have some time to continue with this task. Your last message from the closed pr: > Please let us know if you would still like to explorer...
Found out APP_INITIALIZER is not ideal solution here. MsalModule can be imported by lazy loaded module and APP_INITIALIZER provider registered in MsalModule won't be invoked in such case. There is...