ClientOnly not working, error still raised on server side
Hey!
I have some code which I want to only run on the client side (100ms live - https://www.npmjs.com/package/@100mslive/react-sdk).
I am currently getting this error on the server:
I have tried to wrap the code in ClientOnly, but the error continues to happen
The only solution that I have found is to disable ssr for the entire route (ssr: false).
Is there any way that I can have ssr so the loader runs on the server (rather than on the client w/server function), but not have the server include the 100ms part of the code in it's build?
I have also tried changing values in the vite.config.ts but didn't have any success 😔
Thanks for your help!!
2 Replies
unwilling-turquoise•5d ago
are you looking for
ssr: 'data-only'
https://tanstack.com/start/latest/docs/framework/react/selective-ssr#ssr-data-onlycontinuing-cyanOP•5d ago
Ahh this is great! Thank you @Manuel Schiller 🙇♂️