mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
13 lines
214 B
Plaintext
13 lines
214 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
stories: [],
|
|
addons: [
|
|
// Other Storybook addons
|
|
],
|
|
features: {
|
|
buildStoriesJson: true, // 👈 Enable this to build the stories.json file
|
|
},
|
|
};
|
|
``` |