paleDriver7's picture
Create vue.config.js
92b6413 verified
raw
history blame
215 Bytes
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:5000', // 后端 API 地址
changeOrigin: true,
pathRewrite: { '^/api': '' },
},
},
},
};