mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
33 lines
895 B
Plaintext
33 lines
895 B
Plaintext
```js
|
|
// .storybook/main.js
|
|
|
|
module.exports = {
|
|
// Your existing Storybook configuration
|
|
|
|
// 👇 Retrieve the current environment from the configType argument
|
|
refs: (config, { configType }) => {
|
|
if (configType === 'DEVELOPMENT') {
|
|
return {
|
|
react: {
|
|
title: 'Composed React Storybook running in development mode',
|
|
url: 'http://localhost:7007',
|
|
},
|
|
angular: {
|
|
title: 'Composed Angular Storybook running in development mode',
|
|
url: 'http://localhost:7008',
|
|
},
|
|
};
|
|
}
|
|
return {
|
|
react: {
|
|
title: 'Composed React Storybook running in production',
|
|
url: 'https://your-production-react-storybook-url',
|
|
},
|
|
angular: {
|
|
title: 'Composed Angular Storybook running in production',
|
|
url: 'https://your-production-angular-storybook-url',
|
|
},
|
|
};
|
|
},
|
|
};
|
|
``` |