Vue

报错[WDS] Disconnected!并且运行npm run serve后,Network地址浏览器打开不了

项目环境: Vagrant+Centos7+Xampp+Vue-cli搭建的Vue项目 解决办法:

  • vue.config.js添加代码

module.exports = {
    devServer: {
        host: '10.10.10.61',
    }
}

  • Vagrantfile中添加

 config.vm.network :private_network, ip: "10.10.10.61"

参考

配置前后端分离时,报错Proxy error: Could not proxy request /login from 10.10.10.61:8000 to http://localhost:8080.

项目环境: Vagrant+Centos7+Xampp+Vue-cli搭建的Vue项目 解决办法:

  • vue.config.js添加代码

devServer: {
    host: '10.10.10.61',
    port: '8000',
    open: true,
    proxy: {
      // 对应login路由,由于vagrant可能涉及端口转发的问题,所以一定要用转发前的端口号
      "/login": {
        target: 'http://127.0.0.1:80',
        changeOrigin: true,
      },
    },
  },

文档信息

Search

    Table of Contents