1 .first update

This commit is contained in:
2026-03-05 09:28:32 +08:00
parent f7207cc627
commit 7f5781d4f1
25 changed files with 8091 additions and 0 deletions

12
vite.config.ts Normal file
View File

@@ -0,0 +1,12 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': resolve(__dirname, 'src')
}
}
})