2022-10-13 01:38:11 +02:00
|
|
|
import type { StorybookConfig } from '../../frameworks/react-vite/dist';
|
2022-10-12 23:13:59 +02:00
|
|
|
|
|
|
|
const config: StorybookConfig = {
|
|
|
|
stories: [
|
2022-10-17 11:20:51 +02:00
|
|
|
{
|
2022-10-24 14:21:28 +02:00
|
|
|
directory: '../manager/src',
|
2022-10-27 09:17:22 +02:00
|
|
|
titlePrefix: '@storybook-manager',
|
2022-10-17 11:20:51 +02:00
|
|
|
},
|
|
|
|
{
|
2022-10-24 14:21:28 +02:00
|
|
|
directory: '../components/src',
|
2022-10-25 10:19:26 +02:00
|
|
|
titlePrefix: '@storybook-components',
|
2022-10-17 11:20:51 +02:00
|
|
|
},
|
2022-10-24 14:21:28 +02:00
|
|
|
{
|
|
|
|
directory: '../blocks/src',
|
2022-10-25 10:19:26 +02:00
|
|
|
titlePrefix: '@storybook-blocks',
|
2022-10-24 14:21:28 +02:00
|
|
|
},
|
2022-10-12 23:13:59 +02:00
|
|
|
],
|
|
|
|
addons: [
|
|
|
|
'@storybook/addon-links',
|
|
|
|
'@storybook/addon-essentials',
|
|
|
|
'@storybook/addon-interactions',
|
|
|
|
],
|
|
|
|
framework: {
|
|
|
|
name: '@storybook/react-vite',
|
|
|
|
options: {},
|
|
|
|
},
|
2022-10-24 13:26:23 +02:00
|
|
|
core: {
|
|
|
|
disableTelemetry: true,
|
|
|
|
},
|
2022-10-12 23:13:59 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
export default config;
|