mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:51:19 +08:00
Globs are not correct as it is listed here – https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#correct-globs-in-mainjs
9 lines
142 B
Plaintext
9 lines
142 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
stories: ['../src/**/*.stories.@(js|mdx)'],
|
|
addons: ['@storybook/addon-essentials']
|
|
}
|
|
```
|