first commit

This commit is contained in:
“dongming”
2025-12-18 22:54:30 +08:00
commit cce2baf1d8
110 changed files with 17872 additions and 0 deletions

15
vite.config.js Normal file
View File

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