first commit

This commit is contained in:
2025-09-11 14:15:26 +08:00
commit 4a5d1dbdf2
29 changed files with 2879 additions and 0 deletions

11
vite.config.js Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
server: {
port: 3000,
host: '0.0.0.0',
open: false
}
})