This commit is contained in:
dni ⚡
2025-12-23 10:58:51 +01:00
parent b2aaf97cf3
commit 91f7b7730d
12 changed files with 478 additions and 133 deletions
+5 -3
View File
@@ -1,7 +1,9 @@
import { defineConfig } from 'vitest/config'
import {defineConfig} from 'vitest/config'
import vue from '@vitejs/plugin-vue'
export default defineConfig({
plugins: [vue()],
test: {
globals: true,
environment: "jsdom",
},
environment: 'jsdom'
}
})