-
I need to do some web scraping and struggle with how the Ideally, I would want the I tried to work around it by using Any solution to this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
I believe |
Beta Was this translation helpful? Give feedback.
-
turning of hydration only runs load on the server-side! Try using |
Beta Was this translation helpful? Give feedback.
-
What about loading in layouts, I see the discussion in #4274 - is there a workaround right now? |
Beta Was this translation helpful? Give feedback.
I believe
load
will always run on server and client, since it's used to both server-render and hydrate the page. If you want something to only run on the server, you should extract the logic into an endpoint and call that endpoint from theload
method.