Port is already running on 8081 :
Run
netstat -ano | findstr :8081
to find the process ID (PID) using port 8081.
Then, run
taskkill /PID <PID> /F
(replace
<PID>
with the actual PID you found).
pnpm clean