美文网首页
vue-cli3.0中配置跨域请求 vue.config.js

vue-cli3.0中配置跨域请求 vue.config.js

作者: 有你才精彩XX | 来源:发表于2019-03-12 13:58 被阅读0次

module.exports = {

devServer: {

proxy: {

//配置跨域

            '/api': {

                    target:"http://192.168.0.1",

                    ws:true,

                    changOrigin:true,

                    pathRewrite:{

                    '^/api':'/'

                }

        }

    }

}

}

相关文章

网友评论

      本文标题:vue-cli3.0中配置跨域请求 vue.config.js

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