Add note on dev mode for Windows users

This commit is contained in:
Ola Hungerford
2025-02-14 06:09:40 -07:00
parent beee38387c
commit 348cff9872

View File

@@ -48,6 +48,15 @@ Development mode:
npm run dev
```
> **Note for Windows users:**
> On Windows, you may experience an issue where the proxy server fails to start when running the `npm run dev` command. This is due to TSX's watch mode not properly handling standard input on Windows.
>
> To work around this, you can append `< NUL` to the `dev` script in `/server/package.json`:
>
> ```bash
> tsx watch --clear-screen=false src/index.ts < NUL
> ```
Production mode:
```bash