mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
13 lines
199 B
TypeScript
13 lines
199 B
TypeScript
import { defineConfig } from 'vite'
|
|
import Vue from '@vitejs/plugin-vue'
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
Vue(),
|
|
],
|
|
test: {
|
|
global: true,
|
|
environment: 'happy-dom',
|
|
},
|
|
})
|