19 lines
488 B
JavaScript
Raw Normal View History

import { addons } from '@storybook/addons';
import { themes } from '@storybook/theming';
import addHeadWarning from './head-warning';
addHeadWarning('manager-head-not-loaded', 'Manager head not loaded');
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,
},
},
});