Files
RentWeAppFront/vue.config.js

16 lines
266 B
JavaScript
Raw Normal View History

2025-11-14 11:39:33 +08:00
//配置后端路径请修改config.js
module.exports = {
publicPath: './',
devServer: {
proxy: {
'/api': {
target: 'https://sourcebyte.vip',
changeOrigin: true,
pathRewrite: {
'^/api': '/api'
}
}
}
}
}