feat:初始化工程

This commit is contained in:
2025-06-22 23:00:00 +08:00
commit de5537ee1b
36 changed files with 11182 additions and 0 deletions

15
vite.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import path from 'path'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
base: './',
resolve: {
// 配置路径别名
alias: {
'@': path.resolve(__dirname, './src')
}
}
})