I'm encountering an issue where my server is listening on port 3000 despite explicitly setting port 3002 in my package.json start script:
"start": "remix-serve ./build/server/index.js --port 3002"
The server output shows:
[remix-serve] http://localhost:3000 (http://192.168.1.2:3000)
I've checked for environment variables and reviewed my server code, but can't find the cause. Any ideas on why this might be happening or how to troubleshoot further?
Thanks in advance!