From zero

This commit is contained in:
2024-06-18 14:45:31 +08:00
commit 9e56b56e9d
39 changed files with 6792 additions and 0 deletions

8
client/vite.config.ts Normal file
View File

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