mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:51:17 +08:00
10 lines
226 B
TypeScript
10 lines
226 B
TypeScript
import { defineConfig, mergeConfig } from 'vitest/config';
|
|
import { vitestCommonConfig } from '../../vitest.workspace';
|
|
|
|
export default mergeConfig(
|
|
vitestCommonConfig,
|
|
defineConfig({
|
|
// Add custom config here
|
|
})
|
|
);
|