init repo

This commit is contained in:
2024-07-15 16:15:43 +08:00
commit e93e5b5292
45 changed files with 4085 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
import path from 'path'
import react from '@vitejs/plugin-react'
import { defineConfig } from 'vite'
export default defineConfig({
plugins: [react()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})