I have an Angular 6 application which is working fine on both local development environment as well as on production machine. The data is fed by an API to the application. Application is showing the data just fine by using observable, resolve and promise techniques.
I have made a Universal version of the application (Server Side Rendering or SSR) for SEO purposes which also works fine.
I just have one issue;
When I post my application to production, it displays the contents that are coming from the API just fine, however when I view the "Page Source" on the browser, I'm not able to see the contents that were rendered on the page.
Please note that I have the data coming through "Route Resolve" and it is not the case of async/await issue.