初始模板

This commit is contained in:
fanbook-wangdage
2025-12-20 15:38:00 +08:00
commit d72f2e7159
23 changed files with 4275 additions and 0 deletions

13
vite.config.ts Normal file
View File

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