init repo

This commit is contained in:
2024-11-26 14:28:46 +08:00
commit 8f9dd089bc
42 changed files with 9792 additions and 0 deletions

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

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