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

2019-03-12  本文已影响0人  有你才精彩XX

module.exports = {

devServer: {

proxy: {

//配置跨域

            '/api': {

                    target:"http://192.168.0.1",

                    ws:true,

                    changOrigin:true,

                    pathRewrite:{

                    '^/api':'/'

                }

        }

    }

}

}

上一篇 下一篇

猜你喜欢

热点阅读