我有 ubuntu,正在开发 Angular2 webapp,我想在 IE11 上测试我的 webapp,所以我在 VirtualBox 上安装了 Windows10,但是如何从 VirtualBox 中的 Windows10 访问 localhost:4200,有什么帮助吗?谢谢。
答案1
出于安全考虑,开发服务器会阻止外部连接。如果您希望在不被阻止的情况下运行开发服务器,请运行
ng 服务 --host 0.0.0.0 --disable-host-check
我有 ubuntu,正在开发 Angular2 webapp,我想在 IE11 上测试我的 webapp,所以我在 VirtualBox 上安装了 Windows10,但是如何从 VirtualBox 中的 Windows10 访问 localhost:4200,有什么帮助吗?谢谢。
出于安全考虑,开发服务器会阻止外部连接。如果您希望在不被阻止的情况下运行开发服务器,请运行
ng 服务 --host 0.0.0.0 --disable-host-check