Skip to main content

Troubleshooting

1. Common Issues & Fixes

  • pnpm command not found

    • Ensure pnpm is installed globally: npm install -g pnpm.
  • 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.

  • Dependency issues

    • Run pnpm install --force to reinstall dependencies.