This commit is contained in:
王子琦
2026-01-20 11:32:46 +08:00
parent bc4d194460
commit cc7d8f30ff
92 changed files with 5050 additions and 0 deletions

15
frontend/vue.config.js Normal file
View File

@@ -0,0 +1,15 @@
module.exports = {
devServer: {
port: 5173,
proxy: {
"/api": {
target: "http://localhost:8080",
changeOrigin: true
},
"/files": {
target: "http://localhost:8080",
changeOrigin: true
}
}
}
};