初次提交

This commit is contained in:
lkhsss
2026-01-07 10:30:41 +08:00
commit 91f96a07a3
27 changed files with 8045 additions and 0 deletions

View File

@ -0,0 +1,13 @@
import { defineConfig } from 'vite'
import { fileURLToPath, URL } from 'node:url'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
})