Initial project import

This commit is contained in:
inman
2026-07-23 15:43:23 +08:00
commit 63b4959b6b
36 changed files with 18207 additions and 0 deletions

12
vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
server: {
proxy: {
'/api': 'http://127.0.0.1:5174',
},
},
})