You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
235 B

  1. import Vue from '@vitejs/plugin-vue';
  2. import VueJsx from '@vitejs/plugin-vue-jsx';
  3. import { defineConfig } from 'vitest/config';
  4. export default defineConfig({
  5. plugins: [Vue(), VueJsx()],
  6. test: {
  7. environment: 'jsdom',
  8. },
  9. });