mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 07:01:53 +08:00
14 lines
306 B
Plaintext
14 lines
306 B
Plaintext
```ts
|
|
// .storybook/YourTheme.js
|
|
|
|
import { create } from '@storybook/theming/create';
|
|
|
|
export default create({
|
|
base: 'light',
|
|
brandTitle: 'My custom Storybook',
|
|
brandUrl: 'https://example.com',
|
|
brandImage: 'https://storybook.js.org/images/placeholders/350x150.png',
|
|
brandTarget: '_self',
|
|
});
|
|
```
|