This commit is contained in:
liuziting
2026-01-21 15:33:08 +08:00
parent 5aefe0fa59
commit 52b059fe1e
14 changed files with 3589 additions and 1 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://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
},
},
})