加了api,你后台的接口就是 /api/...才能访问,下来在研究下,这里做一个纪录
//vue.config.js
module.exports = {
devServer: {
proxy:"http://localhost:5000/"
// proxy:{
// '/api': {
// target: 'http://localhost:5000/',
// ws: true,
// changeOrigin: true
// }
// }
}
}