2019-11-08 17:46:17 +01:00

21 lines
413 B
JavaScript

import { configure, addParameters, addDecorator } from '@storybook/html';
import { withA11y } from '@storybook/addon-a11y';
addDecorator(withA11y);
addParameters({
a11y: {
config: {},
options: {
checks: { 'color-contrast': { options: { noScroll: true } } },
restoreScroll: true,
},
},
options: {
hierarchyRootSeparator: /\|/,
},
docs: {
iframeHeight: '200px',
},
});