You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-3Lines changed: 6 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,14 +55,17 @@ const nextConfig = {
55
55
56
56
module.exports= nextConfig;
57
57
```
58
+
58
59
> [!WARNING]
59
-
> RSC is not supported via this as it requires a server and this is fully client side. All dynamic routes have to be linked to or pre defined.
60
+
> **Purely Client-Side Runtime**
61
+
> This tool generates a standalone bundle with no backend.
62
+
> -**Server Logic:** Features like Server Actions, `cookies()`, and Middleware are not supported.
63
+
> -**Dynamic Routes:** You must use `generateStaticParams` for any dynamic paths (e.g., `[id].tsx`) to ensure they are pre-rendered into the `out/` directory before bundling.
64
+
> -**RSC:** React Server Components are supported only insofar as they can be statically rendered to HTML at build time.
0 commit comments