Add dev:windows command
This commit is contained in:
@@ -49,12 +49,9 @@ npm run dev
|
|||||||
```
|
```
|
||||||
|
|
||||||
> **Note for Windows users:**
|
> **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.
|
> On Windows, use the following command instead:
|
||||||
>
|
|
||||||
> To work around this, you can append `< NUL` to the `dev` script in `/server/package.json`:
|
|
||||||
>
|
|
||||||
> ```bash
|
> ```bash
|
||||||
> tsx watch --clear-screen=false src/index.ts < NUL
|
> npm run dev:windows
|
||||||
> ```
|
> ```
|
||||||
|
|
||||||
Production mode:
|
Production mode:
|
||||||
|
|||||||
@@ -22,6 +22,7 @@
|
|||||||
],
|
],
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "concurrently \"cd client && npm run dev\" \"cd server && npm run dev\"",
|
"dev": "concurrently \"cd client && npm run dev\" \"cd server && npm run dev\"",
|
||||||
|
"dev:windows": "concurrently \"cd client && npm run dev\" \"cd server && tsx watch --clear-screen=false src/index.ts < NUL\"",
|
||||||
"build-server": "cd server && npm run build",
|
"build-server": "cd server && npm run build",
|
||||||
"build-client": "cd client && npm run build",
|
"build-client": "cd client && npm run build",
|
||||||
"build": "npm run build-server && npm run build-client",
|
"build": "npm run build-server && npm run build-client",
|
||||||
|
|||||||
Reference in New Issue
Block a user