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:
4848npm run dev
4949```
5050
51+ > ** Note for Windows users:**
52+ > On Windows, use the following command instead:
53+ >
54+ > ``` bash
55+ > npm run dev:windows
56+ > ` ` `
57+
5158Production mode:
5259
5360` ` ` bash
Original file line number Diff line number Diff line change 2222 ],
2323 "scripts" : {
2424 "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" ,
2526 "build-server" : " cd server && npm run build" ,
2627 "build-client" : " cd client && npm run build" ,
2728 "build" : " npm run build-server && npm run build-client" ,
Original file line number Diff line number Diff line change 1616 "scripts" : {
1717 "build" : " tsc" ,
1818 "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"
2021 },
2122 "devDependencies" : {
2223 "@types/cors" : " ^2.8.17" ,
You can’t perform that action at this time.
0 commit comments