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)"],
|
|
|
|
|
addons: ["@storybook/addon-docs", "@storybook/addon-vitest"],
|
2026-03-30 17:59:29 +02:00
|
|
|
framework: "@storybook/react-vite",
|
|
|
|
|
};
|
|
|
|
|
export default config;
|