2 years ago •
Solving Webpack development server error:
> 「wds」: Error: listen EADDRINUSE: address already in use 0.0.0.0:3808
```# Check which process is using the portlsof -i :3808
# Terminate the process using the PID numberkill -9 PID```
#Webpack #TIL