feat: init new frontend

This commit is contained in:
2026-05-03 20:07:27 +08:00
parent c54a22ece5
commit 903bed57c0
20 changed files with 1498 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
import { defineConfig } from 'vite'
import path from 'node:path'
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'),
},
},
})