File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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
3232npm create solid@latest -- --solidstart
33+
3334# using pnpm
3435pnpm create solid@latest --solidstart
36+
3537# using bun
3638bun create solid@latest --solidstart
3739```
@@ -70,7 +72,7 @@ Configure adapters in `app.config.ts` to deploy to platforms like Vercel, Netlif
7072import { defineConfig } from " @solidjs/start/config" ;
7173
7274export 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```
You can’t perform that action at this time.
0 commit comments