|
1 | | -import type { StorybookConfig } from "storybook-solidjs-vite"; |
2 | | - |
3 | | -const config: StorybookConfig = { |
4 | | - stories: ["../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"], |
5 | | - staticDirs: ['../src/stories/public'], |
6 | | - framework: "storybook-solidjs-vite", |
7 | | - addons: [ |
8 | | - "@storybook/addon-essentials", |
9 | | - "@storybook/addon-interactions", |
10 | | - 'storybook-dark-mode', |
11 | | - ], |
12 | | - core: { |
13 | | - disableTelemetry: true, |
14 | | - disableWhatsNewNotifications: true, |
15 | | - enableCrashReports: false, |
16 | | - }, |
17 | | -}; |
18 | | -export default config; |
| 1 | +import type { StorybookConfig } from "storybook-solidjs-vite"; |
| 2 | + |
| 3 | +const config: StorybookConfig = { |
| 4 | + stories: ["../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"], |
| 5 | + staticDirs: ['../src/stories/public'], |
| 6 | + framework: "storybook-solidjs-vite", |
| 7 | + addons: ['@vueless/storybook-dark-mode', "@storybook/addon-docs"], |
| 8 | + core: { |
| 9 | + disableTelemetry: true, |
| 10 | + disableWhatsNewNotifications: true, |
| 11 | + enableCrashReports: false, |
| 12 | + }, |
| 13 | +}; |
| 14 | +export default config; |
0 commit comments