mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:31:19 +08:00
see: https://app.circleci.com/pipelines/github/storybookjs/storybook/7850/workflows/86d66710-5483-4d98-b590-c76aea8aec6a/jobs/203561
36 lines
861 B
JavaScript
36 lines
861 B
JavaScript
/* global window */
|
|
|
|
import { configure, addParameters, setCustomElements } from '@storybook/web-components';
|
|
|
|
import customElements from '../custom-elements.json';
|
|
|
|
setCustomElements(customElements);
|
|
|
|
addParameters({
|
|
a11y: {
|
|
config: {},
|
|
options: {
|
|
checks: { 'color-contrast': { options: { noScroll: true } } },
|
|
restoreScroll: true,
|
|
},
|
|
},
|
|
docs: {
|
|
iframeHeight: '200px',
|
|
},
|
|
});
|
|
|
|
// configure(require.context('../stories', true, /\.stories\.(js|mdx)$/), module);
|
|
|
|
// force full reload to not re-register web components
|
|
const req = require.context('../stories', true, /\.stories\.(js|mdx)$/);
|
|
|
|
configure(req, module);
|
|
|
|
if (module.hot) {
|
|
module.hot.accept(req.id, () => {
|
|
const currentLocationHref = window.location.href;
|
|
window.history.pushState(null, null, currentLocationHref);
|
|
window.location.reload();
|
|
});
|
|
}
|