mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 02:41:08 +08:00
20 lines
436 B
JavaScript
20 lines
436 B
JavaScript
import { load, 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: /\|/,
|
|
},
|
|
});
|
|
|
|
load(require.context('../stories', true, /\.stories\.js$/), module);
|