请求地址
http://localhost:xxxx/xx-api
vite.config.js配置
server: {
proxy: {
"/xx-api": {
target: "https://xxxxx.putyy.com/admin",//你的接口地址
changeOrigin: true,
rewrite: path => path.replace(/^/xx-api/, '')
}
}
},
说明
本地请求 http://localhost:xxxx/xx-api/* 将会转发到 https://xxxxx.putyy.com/admin/*