storybook/docs/snippets/common/storybook-main-ref-local.js.mdx
2020-10-07 12:23:34 +08:00

17 lines
263 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',
},
},
};
```