Troubleshooting
1. Common Issues & Fixes
-
pnpm command not found
- Ensure
pnpmis 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 --forceto reinstall dependencies.
- Run