I'm trying to host my app on 0.0.0.0:3000
and not localhost.
However each time I run the nx serve career --port=3000 --host=0.0.0.0
The app is hosted on:
tcp6 0 0 :::3000 :::* LISTEN 9112/node
Instead of:
tcp6 0 0 0.0.0.0:3000 0 0.0.0.0:* LISTEN 9112/node
the difference is :::
instead of 0.0.0.0
.
What am I doing wrong, how can I host the app on 0.0.0.0
I'm using nrwl/nx
and NextJS
even if the port is correct the host is not.