storybook/docs/snippets/common/storybook-main-ref-local.js.mdx
2023-01-19 17:55:18 +00: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',
},
},
};
```