24 lines
457 B
JavaScript

import { addParameters } from '@storybook/html';
const SOURCE_REGEX = /^\(\) => `(.*)`$/;
addParameters({
a11y: {
config: {},
options: {
checks: { 'color-contrast': { options: { noScroll: true } } },
restoreScroll: true,
},
},
options: {
showRoots: true,
},
docs: {
iframeHeight: '200px',
formatSource: src => {
const match = SOURCE_REGEX.exec(src);
return match ? match[1] : src;
},
},
});