22 lines
388 B
JavaScript
22 lines
388 B
JavaScript
/**
|
|
* External dependencies
|
|
*/
|
|
import { addons } from '@storybook/manager-api';
|
|
import { themes } from '@storybook/theming';
|
|
|
|
/**
|
|
* Internal dependencies
|
|
*/
|
|
import logoUrl from '../woocommerce_logo.png';
|
|
|
|
addons.setConfig( {
|
|
theme: { ...themes.light, brandImage: logoUrl },
|
|
sidebar: {
|
|
collapsedRoots: [
|
|
'woocommerce-admin',
|
|
'product-editor',
|
|
'product-app',
|
|
],
|
|
},
|
|
} );
|