mirror of
https://gitee.com/newgateway/vtj.git
synced 2026-05-08 20:28:01 +08:00
11 lines
233 B
TypeScript
11 lines
233 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
import vue from '@vitejs/plugin-vue';
|
|
import vueJsx from '@vitejs/plugin-vue-jsx';
|
|
|
|
export default defineConfig({
|
|
plugins: [vue(), vueJsx()],
|
|
test: {
|
|
environment: 'jsdom'
|
|
}
|
|
});
|