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