Home > Article > Web Front-end > vue init webpack myproject builds the solution to the problem that the IP cannot be accessed
下面我就为大家分享一篇vue init webpack myproject构建项目 ip不能访问的解决方法,具有很好的参考价值,希望对大家有所帮助。
问题
vue init webpack myproject构建项目 使用localhost 或者127.0.0.1 均可以正常访问,但是切换到本地ip就不行了
解决方式
在 webpack.dev.conf.js 追加以下代码
const HOST = process.env.HOST || '0.0.0.0';
重新启动
npm run dev
重新打开即可
上面是我整理给大家的,希望今后会对大家有帮助。
相关文章:
The above is the detailed content of vue init webpack myproject builds the solution to the problem that the IP cannot be accessed. For more information, please follow other related articles on the PHP Chinese website!