Currently, I am following this doc for authenticat...
# prisma-whats-new
b
Currently, I am following this doc for authentication: https://www.graph.cool/docs/tutorials/react-apollo-auth0-pheiph4ooj/ My react app is set up for server side rendering and by following this documentation, server side rendering doesnt work as intended due to the
fetchPolicy
being set to
network-only
. Setting this causes the query to refetch once it is mounted on the client side. Therefore, the render appears like so:
Server Rendered HTML correct --> Loading Bar --> Rendered HTML
whereas it should just be
Server Rendered HTML correct
. Anyone have recommendations on how to solve this?