This commit is contained in:
2025-09-04 15:45:52 +08:00
commit 2b71cdc2cd
41 changed files with 2937 additions and 0 deletions

7
frontend/vite.config.ts Normal file
View File

@ -0,0 +1,7 @@
import {defineConfig} from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()]
})