Ocelot-Social/vitest.config.ts
2023-11-15 18:20:15 +01:00

18 lines
353 B
TypeScript

import { defineConfig } from 'vitest/config'
import vue from '@vitejs/plugin-vue' // Import the plugin here
export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
/*
server: {
deps: {
inline: ['vuetify'],
},
},
*/
},
plugins: [vue()], // Include it in your array of plugins here
})