Troubleshooting
1. Common Issues & Fixes
-
pnpm command not found
- Ensure
pnpm
is installed globally:npm install -g pnpm
.
- Ensure
-
Port already in use
- Kill the process using the port:
npx kill-port 3000
. - By using Netstat command:
netstat -ano | findstr :<PORT>
.
For more information, refer to the Stackoverflow.
- Kill the process using the port:
-
Dependency issues
- Run
pnpm install --force
to reinstall dependencies.
- Run