mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
17 lines
263 B
Plaintext
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',
|
|
},
|
|
},
|
|
};
|
|
``` |