initial commit

This commit is contained in:
鲁树人
2023-05-07 20:11:16 +01:00
commit e62ec084f4
19 changed files with 3635 additions and 0 deletions

7
vite.config.ts Normal file
View File

@@ -0,0 +1,7 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})