storybook/docs/snippets/common/storybook-main-disable-refs.js.mdx
2023-01-19 17:53:36 +00:00

11 lines
143 B
Plaintext

```js
// .storybook/main.js
module.exports = {
// Your Storybook configuration
refs: {
'package-name': { disable: true },
},
};
```