first commit

This commit is contained in:
“dongming”
2025-12-19 17:06:23 +08:00
commit a146846cc0
63 changed files with 2952 additions and 0 deletions

20
vite.config.ts Normal file
View File

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