SSR with `query`
I'm trying to use
and I have
If I disable JS and make a request in a route like this:
it doesn't SSR the page (in fact the page remains white with no errors neither on the client nor on the server).
Is
@solidjs/router's query like this:and I have
ssr: true in my app config.If I disable JS and make a request in a route like this:
it doesn't SSR the page (in fact the page remains white with no errors neither on the client nor on the server).
Is
query supposed to be called on the server or how can I SSR async server-only queries?