Proxy 代理設定
NIKEDIN 2021-03-09 proxy代理
# 代理請求
有些請求-在非同一個-domain-時-將會形成 cros
在 vue.config.js
設定後,之後打 api 只要前綴/api
就會是 target
// vue.config.js
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'https://giocoplus.gf-gaming.com/',
changeOrigin: true,
pathRewrite: {
'/api': '',
},
},
},
},
}