1

运行npm startexpo start启动项目如下:

React  You can now view My React Native App in the browser.

  Local:            http://localhost:19006/   On Your Network:  http://157.201.29.49:19006/

Note that the development build is not optimized.

 › To create a production build, run expo build:web  › Press Ctrl+C to exit.

 Expo  Press ? to show a list of all available commands.

通过按“w”启动 Expo Web 会http://157.201.29.49:19006/按照建议打开带有 IP 地址 URI 的 Chrome 浏览器。

但是由于办公 VPN,Chrome 浏览器无法解析地址。错误是:

无法访问此站点
ERR_CONNECTION_TIMED_OUT

将 Chrome 中的 URL 替换为http://localhost:19006成功。

如何启动 Expo,以便按 'w' 自动使用 localhost 而不是 IP 地址启动?

4

1 回答 1

1

要修复,expo直接启动如下提供 localhost 选项:

expo start —-localhost

请参阅Expo CLI 文档expo start

--localhost Same as --host localhost
于 2020-01-29T13:58:25.260 回答