I am using create-react-app and hosting in its default port localhost:3000 and want to access this from another device on the same net
My react-scripts:3.4.1 is working,
from
"scripts": { "start": "react-scripts start" }
to ( 0.0.0.0 is not work )
"scripts": { "start": "HOST=127.0.0.1 react-scripts start" }