在vue中的vue.config.js配置文件中
module.exports = {
devServer: {
open: true,
proxy: {
'/api': {
target: "http://192.168.8.164", //不能為空
ws: true,
changOrigin: true,
pathRewrite: {
'^/api': ''
}
}
}
}
}