This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / web / .storybook / main.ts
368 B 14 lines
1import type { StorybookConfig } from "@storybook/sveltekit"; 2 3const config: StorybookConfig = { 4 stories: ["../src/**/*.stories.@(js|ts|svelte)"], 5 addons: [ 6 "@storybook/addon-svelte-csf", 7 "@chromatic-com/storybook", 8 "@storybook/addon-vitest", 9 "@storybook/addon-a11y", 10 "@storybook/addon-docs" 11 ], 12 framework: "@storybook/sveltekit" 13}; 14export default config;