calc/frontend/vue.config.js

17 lines
330 B
JavaScript
Raw Permalink Normal View History

module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://127.0.0.1:8000',
changeOrigin: true,
ws: false,
secure: false,
// 保留 /api 前缀并转发到后端 FastAPI后端已以 /api 为前缀)
pathRewrite: { '^/api': '/api' },
},
},
},
}