init: 初始化 dpb 桃育种系统代码库

前后端 + 后端 FastAPI 全量源码、部署脚本与文档。
This commit is contained in:
34047007@qq.com
2026-08-06 00:17:49 +08:00
commit b95053c52c
1469 changed files with 322298 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
import { defineConfig } from "vitest/config";
import vue from "@vitejs/plugin-vue";
import path from "node:path";
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
"@": path.resolve(__dirname, "src"),
"@utils": path.resolve(__dirname, "src/utils"),
"@stores": path.resolve(__dirname, "src/store"),
},
},
test: {
globals: true,
environment: "jsdom",
include: ["src/**/*.{test,spec}.{ts,js}"],
},
});