Skip to content

Commit bcf5266

Browse files
authored
Update README.md
1 parent 4c61cd5 commit bcf5266

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,17 @@ const nextConfig = {
5555

5656
module.exports = nextConfig;
5757
```
58+
5859
> [!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.
6065
6166
### 2. Build Your Next.js App
6267

6368
```bash
64-
npm run build
65-
# or
6669
bun run build
6770
```
6871

0 commit comments

Comments
 (0)