This commit is contained in:
pakintada@gmail.com 2026-02-17 14:30:02 +07:00
commit b517a997af
339 changed files with 9958 additions and 0 deletions

20
.storybook/main.ts Normal file
View file

@ -0,0 +1,20 @@
import type { StorybookConfig } from '@storybook/sveltekit';
const config: StorybookConfig = {
"stories": [
"../src/**/*.mdx",
"../src/**/*.stories.@(js|ts|svelte)"
],
"addons": [
"@storybook/addon-svelte-csf",
"@chromatic-com/storybook",
"@storybook/addon-docs",
"@storybook/addon-a11y",
"@storybook/addon-vitest"
],
"framework": {
"name": "@storybook/sveltekit",
"options": {}
}
};
export default config;