first commit

This commit is contained in:
“dongming”
2025-12-19 20:00:32 +08:00
commit f6da666d7e
23 changed files with 4372 additions and 0 deletions

12
vite.config.js Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import tailwindcss from '@tailwindcss/vite'
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
port: 3000,
allowedHosts: true,
host: "0.0.0.0"
},
})