mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
22 lines
460 B
TypeScript
22 lines
460 B
TypeScript
import type { StorybookConfig } from '@storybook/vue3-vite';
|
|
|
|
export const sharedConfig: StorybookConfig = {
|
|
stories: ['../src/**/*.stories.ts'],
|
|
addons: [
|
|
'storybook-dark-mode',
|
|
'@storybook/addon-themes',
|
|
'@storybook/addon-links',
|
|
'@chromatic-com/storybook',
|
|
],
|
|
staticDirs: ['../public'],
|
|
framework: {
|
|
name: '@storybook/vue3-vite',
|
|
options: {},
|
|
},
|
|
core: {
|
|
disableTelemetry: true,
|
|
},
|
|
};
|
|
|
|
export const sharedTags: string[] = ['autodocs'];
|