mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-23 05:02:10 +08:00
12 lines
319 B
JavaScript
12 lines
319 B
JavaScript
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({
|
|
showRoots: true,
|
|
theme: themes.light, // { base: 'dark', brandTitle: 'Storybook!' },
|
|
});
|