storybook/docs/snippets/common/storybook-enable-buildstoriesjson.js.mdx
2022-08-19 19:23:08 +01:00

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
},
};
```