mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 02:31:49 +08:00
14 lines
213 B
Plaintext
14 lines
213 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
export default {
|
|
stories: [],
|
|
addons: [
|
|
// Other Storybook addons
|
|
],
|
|
features: {
|
|
buildStoriesJson: true, // 👈 Enable this to build the stories.json file
|
|
},
|
|
};
|
|
```
|