mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
21 lines
409 B
Plaintext
21 lines
409 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
import { setCompodocJson } from '@storybook/addon-docs/angular';
|
|
import docJson from '../documentation.json';
|
|
|
|
import '../src/polyfills';
|
|
|
|
setCompodocJson(docJson);
|
|
|
|
export const parameters = {
|
|
actions: { argTypesRegex: '^on[A-Z].*' },
|
|
controls: {
|
|
matchers: {
|
|
color: /(background|color)$/i,
|
|
date: /Date$/,
|
|
},
|
|
},
|
|
docs: { inlineStories: true },
|
|
};
|
|
``` |