wip: v0.0.5

This commit is contained in:
loveuer
2025-04-27 22:14:21 +08:00
parent 25c76aebf2
commit 4801b3de08
22 changed files with 3021 additions and 3 deletions

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

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