使用vue配置代理服务器时,配置了pathRewrite: {"^/api":"/"},但是貌似没有用,没有去掉/api前缀。
devServer: {
proxy: {
"/api": {
target: 'http://localhost:80',
pathRewrite: {"^/api":"/"}
}
}
}
发送的请求也带了api前缀
axios.get("http://localhost:8080/api/students");
结果请求的还是带前缀/api的地址。
我想把/api前缀去掉,该怎么解决呢?