storybook/docs/snippets/common/storybook-enable-buildstoriesjson.js.mdx
2022-11-17 16:33:22 +01:00

14 lines
215 B
Plaintext

```js
// .storybook/main.js
module.exports = {
stories: [],
addons: [
// Other Storybook addons
],
features: {
buildStoriesJson: true, // 👈 Enable this to build the stories.json file
},
};
```