美文网首页
vue启动本地服务别人可访问

vue启动本地服务别人可访问

作者: aE_0ff7 | 来源:发表于2020-04-28 11:13 被阅读0次

    脚手架版本较低,在config/index.js中

    dev: {
      host: '0.0.0.0',
      port: 8777
    }
    

    脚手架版本较高,文件被隐藏
    创建vue.config.js文件
    在module.exports里

    devServer: {
          // Various Dev Server settings
            host: '0.0.0.0', // can be overwritten by process.env.HOST
            // host: 'localhost',
            port: 8757,
      }
    

    相关文章

      网友评论

          本文标题:vue启动本地服务别人可访问

          本文链接:https://www.haomeiwen.com/subject/haujwhtx.html