mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 15:41:15 +08:00
15 lines
285 B
JavaScript
15 lines
285 B
JavaScript
import { withLinks } from '@storybook/addon-links';
|
|
|
|
export const decorators = [withLinks];
|
|
|
|
const port = process.env.SERVER_PORT || 1337;
|
|
|
|
export const parameters = {
|
|
docs: {
|
|
iframeHeight: '200px',
|
|
},
|
|
server: {
|
|
url: `http://localhost:${port}/storybook_preview`,
|
|
},
|
|
};
|