mirror of
https://github.com/IT4Change/boilerplate-frontend.git
synced 2025-12-13 07:35:53 +00:00
19 lines
394 B
TypeScript
19 lines
394 B
TypeScript
import vue from '@vitejs/plugin-vue' // Import the plugin here
|
|
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'jsdom',
|
|
setupFiles: ['tests/unit.setup.ts'],
|
|
/*
|
|
server: {
|
|
deps: {
|
|
inline: ['vuetify'],
|
|
},
|
|
},
|
|
*/
|
|
},
|
|
plugins: [vue()], // Include it in your array of plugins here
|
|
})
|