Initial commit

This commit is contained in:
2026-01-29 09:30:21 +08:00
commit c417ac44af
124 changed files with 5786 additions and 0 deletions

14
vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import path from 'node:path'
import { defineConfig } from 'vite'
import tailwindcss from '@tailwindcss/vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue(), tailwindcss()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})