Downgrade to CSR #3696
Jerry-Hong
started this conversation in
Proposals
Replies: 1 comment 2 replies
-
Let me see if I understood you, you mean have a way to tell Remix that instead of using the data fetched server side on SSR to render the routes to HTML, it should send a static HTML with the data inlined so it can do the render client-side? What would happen if your server is over loaded and this happen just when Google is indexing your app? Now your SSR is empty so it will index it that way. I think if SSR React to an HTML string is the thing slowing you down you probably want to cache the document request, even if that means users will get old data on the first request. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
What is the new or updated feature that you are suggesting?
Remix can build a
index.html
for all client side render like a SPA.Why should this feature be included?
When server is over loading(RenderToString is the bottleneck), we can failover to client side render.
Beta Was this translation helpful? Give feedback.
All reactions