-
Is it possible to use Remix but without having React as part of the client bundle? In other words, no hydration. |
Beta Was this translation helpful? Give feedback.
Answered by
Xiphe
Jun 1, 2022
Replies: 1 comment 2 replies
-
You can get rid of the whole JS client bundle by removing After that you still can add other script tags for micro-enhancements later on or re-enable the client. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
tavoyne
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can get rid of the whole JS client bundle by removing
<Scripts />
in yourapp/root.tsx
thereby making your app server side only.After that you still can add other script tags for micro-enhancements later on or re-enable the client.