I have upgraded Angular 5 to 7 and kept rxjs-compat. Application was working fine in this case, but later we removed rxjs-compat and done respective changes. And we are getting error while loading the application as "Enpoint unreachable" while bootstrapping the application. We are using
"@ngx-config/core": "7.0.0",
"@ngx-config/http-loader": "7.0.0",
I suspect this package is creating some issue after upgrade.But compilation is success, only while running the application it shows console error as endpoint unreachable. Any body else faced this issues or any idea how to debugg these kind of issues.
Any help will be appreciated
EDIT
After further analysis I found that, this error is happened because of @ngx-config update, nothing to do with rxjs-compat.
// for config loader
export function configFactory(http: HttpClient): ConfigLoader {
return new ConfigHttpLoader(http, environment.configFile);
}
Interceptor
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
//etc
})