sh03
Explore posts from serversDetails on how client code and server code is split
I already did here: https://github.com/solidjs/solid-start/issues/1681 but I was just trying to speed up the process
9 replies
Confusion about `"use server"`
I though
action
and query
is what wrapped the function into a RPC. Also if I omit use server
in functions that are called by other use server
functions it seems like SolidJS crashes silently while adding use server
makes it work so it's unclear whether that is actually required or not.6 replies
blank page on error
Another case (and easiest to reproduce):
If I have a module
x
:
and call signInWithGoogle
from a route page:
No errors on console or server but console.log
is never shown.
If you comment out const signIn = useAction(signInWithGoogle);
then the console log is shown on the client as expected.21 replies