chore: 初始化医签通前端项目结构与文档

This commit is contained in:
yelan
2026-08-27 10:40:29 +08:00
commit 3f27d4dd3a
47 changed files with 5829 additions and 0 deletions

View File

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