“提交项目”

This commit is contained in:
2026-03-03 14:41:39 +08:00
commit afffb8340c
127 changed files with 12504 additions and 0 deletions

13
ui/vite.config.js Normal file
View File

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