美文网首页
vue-cli3之配置文件-vue.config.js

vue-cli3之配置文件-vue.config.js

作者: 回不去的那些时光 | 来源:发表于2019-04-02 16:18 被阅读0次

    运行项目自动运行浏览器

    module.exports = {
      lintOnSave: false,
    
      devServer: {
        port: 8081,   //  端口号
        host: "localhost",  
        open: true    //  配置自动启动浏览器
      }
    };
    

    使用proxy跨域

    最终接口地址: http://localhost:3000/test
    vue.config.js文件中配置:

    module.exports = {
      devServer: {
        proxy: {
          // 接口是 '/api' 开头的才用代理
          '/api': {
            target: 'http://xxxx/device/',  // 目标地址
            changeOrigin: true,             // 是否改变源地址
            ws: true,
            pathRewrite: {
              '^/api': ''
            }
          }
        }
      }
    }
    

    home.vue

    this.$http.get("/api/test")
        .then(res => {
          console.log(res);
        })
        .catch(err => {
          console.log(err);
        });
    

    相关文章

      网友评论

          本文标题:vue-cli3之配置文件-vue.config.js

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