在vite.config.js的export中添加如下代码
server: {
// 配置代理规则
proxy: {
'/api': { // 要检测的路径前缀
target: 'http://127.0.0.1:8080', // 目标服务器地址
changeOrigin: true, // 是否改变源地址
rewrite: (path) => path.replace(/^\/api/, ''), // 重写路径
},
},
},
实际请求的后端路径为:http://127.0.0.1:8080/haha
调用时使用如下代码:
function haha(){
axios.get('/api/haha').then(res=>{
console.log(res)
})
}
注意:vue.config.js和vite.config.js写法不同