mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
15 lines
378 B
JavaScript
15 lines
378 B
JavaScript
import * as storybook from '@storybook/react';
|
|
import { setOptions } from '../preview';
|
|
|
|
setOptions({
|
|
name: 'CUSTOM-OPTIONS',
|
|
url: 'https://github.com/storybooks/storybook',
|
|
// goFullScreen: false,
|
|
// showStoriesPanel: true,
|
|
showAddonPanel: false,
|
|
// showSearchBox: false,
|
|
// addonPanelInRight: false,
|
|
});
|
|
|
|
storybook.configure(() => require('./stories'), module);
|