2020-01-04 18:29:29 +00:00
|
|
|
import { addons } from '@storybook/addons';
|
|
|
|
import { themes } from '@storybook/theming';
|
|
|
|
|
2019-10-28 20:25:13 +01:00
|
|
|
import addHeadWarning from './head-warning';
|
|
|
|
|
|
|
|
addHeadWarning('manager-head-not-loaded', 'Manager head not loaded');
|
2020-01-04 18:29:29 +00:00
|
|
|
|
|
|
|
addons.setConfig({
|
|
|
|
theme: themes.light, // { base: 'dark', brandTitle: 'Storybook!' },
|
2019-12-07 13:10:09 -05:00
|
|
|
previewTabs: {
|
|
|
|
canvas: null,
|
|
|
|
'storybook/docs/panel': null,
|
|
|
|
'storybookjs/notes/panel': { title: 'Annotations', hidden: true },
|
|
|
|
graphiql: {
|
|
|
|
hidden: true,
|
|
|
|
},
|
|
|
|
},
|
2021-02-25 15:46:30 +01:00
|
|
|
collapsedRoots: ['other'],
|
2020-01-04 18:29:29 +00:00
|
|
|
});
|