After successfully deploying our Angular app to our test server, my team encountered an issue when trying to deploy it to the production server.
While the app functions correctly in development and on the test server, the subjects are not triggering their subscription on the production server. The same build that worked on the test server was published to production with no file differences.
I am unsure if RxJs requires some specific system setup that I am unaware of, causing the subjects to malfunction. I'm at a loss on how to debug this issue or what could be causing it.
The services where the subjects are located are singleton objects, I properly unsubscribe in the ngOnDestroy block, and everything is functioning as expected on the test server. Therefore, I don't believe the issue lies within the code itself.
Any guidance or suggestions on how to troubleshoot this problem would be greatly appreciated.
We are using Angular 6.2.2 for this project.