You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module.exports={dev: {// PathsassetsSubDirectory: 'static',assetsPublicPath: '/',proxyTable: {},// Various Dev Server settingshost: 'locahost',// can be overwritten by process.env.HOST……
host设置为了localhost。
解决方法:讲localhost修改为0.0.0.0
module.exports={dev: {// PathsassetsSubDirectory: 'static',assetsPublicPath: '/',proxyTable: {},// Various Dev Server settingshost: '0.0.0.0',// can be overwritten by process.env.HOST
The text was updated successfully, but these errors were encountered:
问题:用新版vue-cli在虚拟机上使用
npm run dev
启动服务,通过ip无法访问页面原因:在新版vue-cli中的
config/index.js
中host设置为了localhost。
解决方法:讲localhost修改为
0.0.0.0
The text was updated successfully, but these errors were encountered: