mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
18 lines
421 B
TypeScript
18 lines
421 B
TypeScript
import { configure, addParameters, addDecorator } from '@storybook/angular';
|
|
import { withA11y } from '@storybook/addon-a11y';
|
|
import addCssWarning from '../src/cssWarning';
|
|
|
|
addDecorator(withA11y);
|
|
addCssWarning();
|
|
|
|
addParameters({
|
|
options: {
|
|
hierarchyRootSeparator: /\|/,
|
|
docs: {
|
|
iframeHeight: '60px',
|
|
},
|
|
},
|
|
});
|
|
|
|
configure(require.context('../src/stories', true, /\.stories\.(ts|mdx)$/), module);
|