实现基本功能

This commit is contained in:
2021-07-26 17:26:58 +08:00
commit 78addb6d96
22 changed files with 8717 additions and 0 deletions

7
vite.config.ts Normal file
View File

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