How to open a create-react-app from another computer connected to the same network?

前端 未结 10 559
旧时难觅i
旧时难觅i 2021-02-02 06:38

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

10条回答
  •  孤独总比滥情好
    2021-02-02 07:19

    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"
    }
    

提交回复
热议问题