mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:21:17 +08:00
19 lines
358 B
Plaintext
19 lines
358 B
Plaintext
```js
|
|
// .storybook/manager.js
|
|
|
|
import { addons } from '@storybook/addons';
|
|
|
|
addons.setConfig({
|
|
isFullscreen: false,
|
|
showNav: true,
|
|
showPanel: true,
|
|
panelPosition: 'bottom',
|
|
sidebarAnimations: true,
|
|
enableShortcuts: true,
|
|
isToolshown: true,
|
|
theme: undefined,
|
|
selectedPanel: undefined,
|
|
initialActive: 'sidebar',
|
|
showRoots: false,
|
|
});
|
|
``` |