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
@@ -214,7 +214,7 @@ npm run start
214
214
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:
215
215
216
216
```sh
217
-
bun install react@rc react-dom@rc
217
+
bun install react@19 react-dom@19
218
218
```
219
219
220
220
Ensure your `vite.config.ts` file is correct:
@@ -232,7 +232,7 @@ export default defineConfig({
232
232
233
233
#### Production Server with Bun
234
234
235
-
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`.
235
+
To run TanStack Start applications in production with Bun, you need a custom server implementation.
236
236
237
237
We've created an optimized production server that provides intelligent static asset loading with configurable memory management.
238
238
@@ -253,7 +253,7 @@ We've created an optimized production server that provides intelligent static as
0 commit comments