mirror of
https://github.com/fastapiadmin/FastapiAdmin.git
synced 2026-09-21 12:52:26 +00:00
feat: 更新项目logo与 favicon 资源 fix: 修复工单表单接口定义缺失字段问题 style: 修复多处样式排版与兼容性问题 test: 完善权限抽屉组件单测用例格式
20 lines
473 B
TypeScript
20 lines
473 B
TypeScript
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/index"),
|
|
"@stores": path.resolve(__dirname, "src/stores"),
|
|
},
|
|
},
|
|
test: {
|
|
globals: true,
|
|
environment: "jsdom",
|
|
include: ["src/**/*.{test,spec}.{ts,js}"],
|
|
},
|
|
});
|