mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
17 lines
459 B
Plaintext
17 lines
459 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
stories: [
|
|
{
|
|
// 👇 The directory field sets the directory your stories
|
|
directory: '../packages/stories',
|
|
// 👇 The titlePrefix field will generate automatic titles for your stories
|
|
titlePrefix: 'MyComponents',
|
|
// 👇 Storybook will load all files that contain the stories extensio
|
|
files: '*.stories.*',
|
|
},
|
|
],
|
|
addons: ['@storybook/addon-essentials'],
|
|
};
|
|
``` |