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
For now, I only have one Svelte component, so I've just set <.svelte ... ssr={false} ...>, but what do you think of a application config to enable/disable SSR?
I'm happy to open a PR if this sounds like a good approach to solving this issue.
The text was updated successfully, but these errors were encountered:
Right, this is something I didn't really think of. SSR is automatically disabled when the NodeJS supervisor is not present. But in your case you need the NodeJS for something unrelated to LiveSvelte while wanting to disable LiveSvelte SSR. Let me know if I got that wrong.
I'd be happy to merge a PR that introduces an application config variable to enable/disable SSR.
Hello,
My application starts a
NodeJS.Supervisor
in order to use a Node dependency.I want to disable SSR, but the running
NodeJS.Supervisor
it seems to lead LiveSvelte into making aNodeJS.call
which results in this error:For now, I only have one Svelte component, so I've just set
<.svelte ... ssr={false} ...>
, but what do you think of a application config to enable/disable SSR?I'm happy to open a PR if this sounds like a good approach to solving this issue.
The text was updated successfully, but these errors were encountered: