Error AtlasError Documentation and Resolution

Vite dev server port already in use

Port 5173 is already in use

Vite cannot start its dev server because another process is already bound to the requested port.

Port 5173 is already in usedevelopment servers
Port 5173 is already in use
  • Another Vite or Node process is still running in the background.
  • A different local tool is already listening on port 5173.
  • The project hardcodes the port without fallback logic.
  1. Stop the existing process using the port with platform-appropriate tools.
  2. Restart the dev server after confirming the port is free.
  3. Change the Vite port in the config or run the dev server on an alternate port.
Vite Port 5173 is already in use: fixes for local dev | Error Atlas