新增后台管理系统(答辩用

This commit is contained in:
2026-06-24 05:07:32 +08:00
parent 2251f31524
commit 1f209e6761
98 changed files with 25099 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { defineConfig } from 'vite'
import uni from '@dcloudio/vite-plugin-uni'
export default defineConfig({
plugins: [uni()],
server: {
port: 8081,
proxy: {
'/gym-api': {
target: 'http://localhost:8084',
changeOrigin: true,
secure: false,
rewrite: (path) => path.replace(/^\/gym-api/, '')
}
}
}
})