mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
21 lines
389 B
JavaScript
21 lines
389 B
JavaScript
import { 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: {
|
|
showRoots: true,
|
|
},
|
|
docs: {
|
|
iframeHeight: '200px',
|
|
},
|
|
});
|