You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, it doesn't work when using Sveltekit because of serverside rendering:
Error: <Countup> is not a valid SSR component. You may need to review your build config to ensure that dependencies are compiled, rather than imported as pre-compiled modules. Otherwise you may need to fix a <Countup>.
The text was updated successfully, but these errors were encountered:
I understand that it's for the client and rendering on the server would be pointless but because of server side rendering Sveltekit will try to render your component on the server. Usually the component will have a check in place if you are on the server, and if so it will not try to render it on the server to avoid this error.
So I mean there should be a check in place to disable rendering on the server so we can use the component in Sveltekit.
Hi, it doesn't work when using Sveltekit because of serverside rendering:
The text was updated successfully, but these errors were encountered: