first commit

This commit is contained in:
2026-02-18 14:30:42 +08:00
commit f79920ad6a
212 changed files with 3850 additions and 0 deletions

18
vite.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
'/api/v1': {
target: 'http://127.0.0.1:8080',
changeOrigin: true,
},
'/api/v1/ws': {
target: 'ws://127.0.0.1:8080',
ws: true,
}
}
}
})