I am facing an issue in my React Web App. I am using Server-side rendering and redux with React.
Here is what happens:
Request for a page (let's say
/about
)Browser loads and renders the server side document content (since i am using SSR).
A white screen appears for a second and less, and then the complete page renders/painted.
When i say complete page renders and painted. I mean, the complete page content (document) is not being generated at server side (as a part of SSR). There is some content (part of a document) being generated at the client side as well.
So initially i see the server-side generated html, then a white screen, then the complete web page.
Can anyone help me out narrowing down this issue or someone has faced similar issue having a solution to fix this problem. Let me know if i have to share more information.