mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:11:20 +08:00
# Conflicts: # addons/storyshots/storyshots-core/package.json # examples/html-kitchen-sink/.storybook/presets.js
21 lines
402 B
JavaScript
21 lines
402 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: {
|
|
hierarchyRootSeparator: /\|/,
|
|
},
|
|
docs: {
|
|
iframeHeight: '200px',
|
|
},
|
|
});
|