mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 04:21:16 +08:00
15 lines
410 B
TypeScript
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()],
|
|
})
|
|
);
|