feat: 完成 #1 项目初始化和基础框架搭建

This commit is contained in:
root
2026-03-09 19:41:11 +08:00
commit 6d5e846e7f
35 changed files with 5194 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
server: {
proxy: {
'/api': {
target: 'http://localhost:8080',
changeOrigin: true
},
'/healthz': {
target: 'http://localhost:8080',
changeOrigin: true
}
}
}
})