1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-04-08 11:11:53 +08:00
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()],
})
);