mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
26 lines
513 B
JavaScript
26 lines
513 B
JavaScript
import { addParameters, addDecorator } from '@storybook/server';
|
|
import { withLinks } from '@storybook/addon-links';
|
|
|
|
addDecorator(withLinks);
|
|
|
|
const port = process.env.SERVER_PORT || 1337;
|
|
|
|
addParameters({
|
|
a11y: {
|
|
config: {},
|
|
options: {
|
|
checks: { 'color-contrast': { options: { noScroll: true } } },
|
|
restoreScroll: true,
|
|
},
|
|
},
|
|
options: {
|
|
showRoots: true,
|
|
},
|
|
docs: {
|
|
iframeHeight: '200px',
|
|
},
|
|
server: {
|
|
url: `http://localhost:${port}/storybook_preview`,
|
|
},
|
|
});
|