docs: update outdated notice (#15001)
authorEli <88557639+lishaduck@users.noreply.github.com>
Wed, 3 Dec 2025 04:45:41 +0000 (22:45 -0600)
committerGitHub <noreply@github.com>
Wed, 3 Dec 2025 04:45:41 +0000 (12:45 +0800)
documentation/docs/20-core-concepts/60-remote-functions.md

index e70e4f33cc134742a18e2d876c5bf90a8ce4fb72..f2b76f591a13a8710f82314e47a4cf8e367b345c 100644 (file)
@@ -1075,8 +1075,6 @@ export const getPost = prerender(
 );
 ```
 
-> [!NOTE] Svelte does not yet support asynchronous server-side rendering, so it's likely that you're only calling remote functions from the browser, rather than during prerendering. Because of this, you will need to use `inputs`, for now. We're actively working on this roadblock.
-
 By default, prerender functions are excluded from your server bundle, which means that you cannot call them with any arguments that were _not_ prerendered. You can set `dynamic: true` to change this behaviour:
 
 ```js