storybook/docs/snippets/common/storybook-main-ref-local.js.mdx
2022-11-17 16:33:22 +01:00

18 lines
264 B
Plaintext

```js
// .storybook/main.js
module.exports = {
// your Storybook configuration
refs: {
react: {
title: 'React',
url: 'http://localhost:7007',
},
angular: {
title: 'Angular',
url: 'http://localhost:7008',
},
},
};
```