DecisionMaker / frontend /vue.config.js
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': '' },
},
},
},
};