Files
nursing-home/frontend/vue.config.js
王子琦 cc7d8f30ff add
2026-01-20 11:32:46 +08:00

16 lines
266 B
JavaScript

module.exports = {
devServer: {
port: 5173,
proxy: {
"/api": {
target: "http://localhost:8080",
changeOrigin: true
},
"/files": {
target: "http://localhost:8080",
changeOrigin: true
}
}
}
};