Files
element-call/.storybook/main.ts
T

16 lines
452 B
TypeScript
Raw Normal View History

2026-04-10 17:01:56 +02:00
/*
Copyright 2026 Element Creations Ltd.
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
Please see LICENSE in the repository root for full details.
*/
2026-03-30 17:59:29 +02:00
import type { StorybookConfig } from "@storybook/react-vite";
const config: StorybookConfig = {
2026-04-14 13:25:33 +02:00
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
2026-04-14 14:30:46 +02:00
addons: ["@storybook/addon-docs"],
2026-03-30 17:59:29 +02:00
framework: "@storybook/react-vite",
};
export default config;