Skip to content

Commit 4bfd140

Browse files
authored
Update README.md
1 parent b57c245 commit 4bfd140

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
## Core Features
1212

1313
- **All Rendering Modes**:
14-
- Server-Side Rendering (SSR) with synchronous, asynchronous, and streaming options
14+
- Server-Side Rendering (SSR) with sync, async, and stream [modes](https://docs.solidjs.com/solid-start/reference/server/create-handler).
1515
- Client-Side Rendering (CSR)
1616
- Static Site Generation (SSG)
1717
- **TypeScript**: Full integration for robust, type-safe development
@@ -30,8 +30,10 @@ Create a template project with your preferred package manager:
3030
```bash
3131
# using npm
3232
npm create solid@latest -- --solidstart
33+
3334
# using pnpm
3435
pnpm create solid@latest --solidstart
36+
3537
# using bun
3638
bun create solid@latest --solidstart
3739
```
@@ -70,7 +72,7 @@ Configure adapters in `app.config.ts` to deploy to platforms like Vercel, Netlif
7072
import { defineConfig } from "@solidjs/start/config";
7173

7274
export default defineConfig({
73-
ssr: true, // Set to false for client-side rendering
75+
ssr: true, // false for client-side rendering
7476
server: { preset: "vercel" },
7577
});
7678
```

0 commit comments

Comments
 (0)