mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
9 lines
374 B
TypeScript
9 lines
374 B
TypeScript
import path from 'path';
|
|
import { StorybookConfig } from '@storybook/types';
|
|
import { hasDocsOrControls } from '@storybook/docs-tools';
|
|
|
|
export const previewAnnotations: StorybookConfig['previewAnnotations'] = (entry = [], options) => {
|
|
if (!hasDocsOrControls(options)) return entry;
|
|
return [...entry, path.join(__dirname, '../../../dist/types/client/docs/config')];
|
|
};
|