first commit

This commit is contained in:
龙澳
2026-03-23 14:32:49 +08:00
commit 92bc02142d
10 changed files with 2351 additions and 0 deletions

10
vite.config.js Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 5173,
host: true,
},
})