Skip to content

Commit ca671d4

Browse files
Update advanced-api/dynamic-remotes/README.md
Co-authored-by: Copilot <[email protected]>
1 parent f0ed529 commit ca671d4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

advanced-api/dynamic-remotes/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,9 @@ const loadWithRetry = async (remoteName, retries = 3) => {
368368

369369
**4. Development Server Port Conflicts**
370370
```bash
371-
# Check and kill processes using ports
371+
# 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:
372374
lsof -ti:3001,3002,3003 | xargs kill -9
373375
```
374376

0 commit comments

Comments
 (0)