今天配置的時(shí)候遇到https的請(qǐng)求,特此記錄一下
舉例:localhost:8080/api/xxx 代理到 http://192.168.10.1:8088/api/xxx,如果用pathRewrite重寫則代理到https://192.168.10.1:8088/xxx
將'/api'轉(zhuǎn)為'/'
proxy: {
'/api': { // '/api':匹配項(xiàng)
target: 'http://192.168.10.183:8103', // 接口的域名
secure: false, // 如果是https接口擦俐,需要配置這個(gè)參數(shù)
changeOrigin: true, // 如果接口跨域荧关,需要進(jìn)行這個(gè)參數(shù)配置
pathRewrite: { // 如果接口本身沒(méi)有/api需要通過(guò)pathRewrite來(lái)重寫了地址
'^api': ''"
}
}
}