feat: init frontend with vite

This commit is contained in:
tao.chen
2026-07-30 10:46:29 +08:00
parent baee7a60e1
commit d06a516388
16 changed files with 2318 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vite.dev/config/
export default defineConfig({
plugins: [react()],
})