We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ed529 commit ca671d4Copy full SHA for ca671d4
advanced-api/dynamic-remotes/README.md
@@ -368,7 +368,9 @@ const loadWithRetry = async (remoteName, retries = 3) => {
368
369
**4. Development Server Port Conflicts**
370
```bash
371
-# Check and kill processes using ports
+# Check and gracefully terminate processes using ports
372
+lsof -ti:3001,3002,3003 | xargs kill -15
373
+# If any processes remain, force kill as a last resort:
374
lsof -ti:3001,3002,3003 | xargs kill -9
375
```
376
0 commit comments