mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-18 06:22:28 +03:00
18 lines
396 B
TypeScript
18 lines
396 B
TypeScript
import type { StorybookConfig } from '@storybook/sveltekit';
|
|
const config: StorybookConfig = {
|
|
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(js|jsx|ts|tsx)'],
|
|
addons: [
|
|
'@storybook/addon-links',
|
|
'@storybook/addon-essentials',
|
|
'@storybook/addon-interactions'
|
|
],
|
|
framework: {
|
|
name: '@storybook/sveltekit',
|
|
options: {}
|
|
},
|
|
docs: {
|
|
autodocs: 'tag'
|
|
}
|
|
};
|
|
export default config;
|