DecisionMaker / frontend /vue.config.js
paleDriver7's picture
Update frontend/vue.config.js
6fed84d verified
raw
history blame
233 Bytes
module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://localhost:7860', // 后端 API εœ°ε€
changeOrigin: true,
pathRewrite: { '^/api': '' },
},
},
},
publicPath: '/'
};