mattercontrol/vite.config.ts

12 lines
228 B
TypeScript
Raw Permalink Normal View History

2026-01-28 23:39:01 -08:00
import { defineConfig } from 'vitest/config'
2026-01-28 22:34:23 -08:00
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
2026-01-28 23:22:55 -08:00
test: {
globals: true,
environment: 'happy-dom',
},
2026-01-28 22:34:23 -08:00
})