storybook/code/renderers/vue3/vitest.config.ts
Valentin Palkovic 353ff45133 Fix unit tests
2025-03-12 12:37:53 +01:00

15 lines
410 B
TypeScript

import { defineConfig, mergeConfig } from 'vitest/config';
import vue from '@vitejs/plugin-vue';
import { vitestCommonConfig } from '../../vitest.workspace';
export default mergeConfig(
vitestCommonConfig,
// @ts-expect-error seems like there's a type mismatch in the vue plugin
defineConfig({
// @ts-expect-error seems like there's a type mismatch in the vue plugin
plugins: [vue()],
})
);