File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,13 @@ Development mode:
48
48
npm run dev
49
49
```
50
50
51
+ > ** Note for Windows users:**
52
+ > On Windows, use the following command instead:
53
+ >
54
+ > ``` bash
55
+ > npm run dev:windows
56
+ > ` ` `
57
+
51
58
Production mode:
52
59
53
60
` ` ` bash
Original file line number Diff line number Diff line change 22
22
],
23
23
"scripts" : {
24
24
"dev" : " concurrently \" cd client && npm run dev\" \" cd server && npm run dev\" " ,
25
+ "dev:windows" : " concurrently \" cd client && npm run dev\" \" cd server && npm run dev:windows" ,
25
26
"build-server" : " cd server && npm run build" ,
26
27
"build-client" : " cd client && npm run build" ,
27
28
"build" : " npm run build-server && npm run build-client" ,
Original file line number Diff line number Diff line change 16
16
"scripts" : {
17
17
"build" : " tsc" ,
18
18
"start" : " node build/index.js" ,
19
- "dev" : " tsx watch --clear-screen=false src/index.ts"
19
+ "dev" : " tsx watch --clear-screen=false src/index.ts" ,
20
+ "dev:windows" : " tsx watch --clear-screen=false src/index.ts < NUL"
20
21
},
21
22
"devDependencies" : {
22
23
"@types/cors" : " ^2.8.17" ,
You can’t perform that action at this time.
0 commit comments