mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:31:07 +08:00
26 lines
629 B
JavaScript
26 lines
629 B
JavaScript
import { load, addParameters, addDecorator } from '@storybook/html';
|
|
import { withA11y } from '@storybook/addon-a11y';
|
|
import { DocsPage } from '@storybook/addon-docs/blocks';
|
|
|
|
addDecorator(withA11y);
|
|
|
|
addParameters({
|
|
a11y: {
|
|
config: {},
|
|
options: {
|
|
checks: { 'color-contrast': { options: { noScroll: true } } },
|
|
restoreScroll: true,
|
|
},
|
|
},
|
|
options: {
|
|
hierarchyRootSeparator: /\|/,
|
|
docs: {
|
|
iframeHeight: '200px',
|
|
},
|
|
},
|
|
docs: DocsPage,
|
|
});
|
|
|
|
load(require.context('../stories', true, /\.stories\.js$/), module);
|
|
load(require.context('../stories', true, /\.stories\.mdx$/), module);
|