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: docs/start/framework/react/hosting.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -202,7 +202,7 @@ npm run start
202
202
Make sure that your `react` and `react-dom` packages are set to version 19.0.0 or higher in your `package.json` file. If not, run the following command to upgrade the packages:
203
203
204
204
```sh
205
-
bun install react@rc react-dom@rc
205
+
bun install react@19 react-dom@19
206
206
```
207
207
208
208
Ensure your `vite.config.ts` file is correct:
@@ -220,7 +220,7 @@ export default defineConfig({
220
220
221
221
#### Production Server with Bun
222
222
223
-
To run TanStack Start applications in production with Bun, you need a custom server implementation. The default build output doesn't work directly with `bun run dist/server/server.js`.
223
+
To run TanStack Start applications in production with Bun, you need a custom server implementation.
224
224
225
225
We've created an optimized production server that provides intelligent static asset loading with configurable memory management.
226
226
@@ -241,7 +241,7 @@ We've created an optimized production server that provides intelligent static as
0 commit comments