mirror of
https://github.com/gitbutlerapp/gitbutler.git
synced 2024-12-18 23:02:31 +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;
|