This commit is contained in:
josc146
2023-05-03 23:38:54 +08:00
commit 02b9fd8a53
35 changed files with 2766 additions and 0 deletions

7
frontend/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()]
})