/// import { defineConfig } from 'vite' import Vue from '@vitejs/plugin-vue' export default defineConfig({ plugins: [Vue()], test: { globals: true, environment: 'happy-dom', coverage: { provider: 'v8', reporter: ['text', 'json'], enabled: true, exclude: [], include: ['components/**'], }, }, })