Initial commit

This commit is contained in:
liumangmang
2026-05-12 17:51:53 +08:00
commit b564ca4797
55 changed files with 6407 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: { '@': resolve(__dirname, 'src') },
},
server: {
proxy: {
'/api': { target: 'http://localhost:8000', changeOrigin: true },
'/healthz': { target: 'http://localhost:8000', changeOrigin: true },
},
},
build: {
outDir: 'dist',
sourcemap: false,
},
})