Replies: 1 comment 1 reply
-
Pay attention to use stores on the server because they gets created on the server instance (meaning every client would get the same value)...if you can provide a minimal repro I can try to take a look tho |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Say I have a certain functionality that can only be run on the server. This works fine on initial render (SSR).
However I'd like to call the same server API when a search param is changed.
I think that could work with the
load
function in+page.server.ts
but it does not react upon search params change.Beta Was this translation helpful? Give feedback.
All reactions