You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
525 B
21 lines
525 B
import type { StorybookConfig } from "@storybook/sveltekit"; |
|
|
|
const config: StorybookConfig = { |
|
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx|svelte)"], |
|
addons: [ |
|
"@storybook/addon-svelte-csf", |
|
"@storybook/addon-links", |
|
"@storybook/addon-essentials", |
|
"@storybook/addon-interactions", |
|
"@storybook/addon-a11y" |
|
], |
|
framework: { |
|
name: "@storybook/sveltekit", |
|
options: {}, |
|
}, |
|
staticDirs: ['test-assets'], |
|
docs: { |
|
autodocs: "tag", |
|
}, |
|
}; |
|
export default config;
|
|
|