mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:01:06 +08:00
15 lines
359 B
Plaintext
15 lines
359 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
stories: ['../stories/**/*.stories.mdx', '../stories/**/*.stories.@(js|jsx|ts|tsx)'],
|
|
addons: ['@storybook/addon-links', '@storybook/addon-essentials'],
|
|
core: {
|
|
builder: '@storybook/builder-vite',
|
|
},
|
|
typescript: {
|
|
reactDocgen: 'react-docgen', // 👈 react-docgen configured here.
|
|
},
|
|
};
|
|
```
|