mirror of
https://github.com/vector-im/element-call.git
synced 2026-07-18 18:59:23 +00:00
16 lines
452 B
TypeScript
16 lines
452 B
TypeScript
/*
|
|
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.
|
|
*/
|
|
|
|
import type { StorybookConfig } from "@storybook/react-vite";
|
|
|
|
const config: StorybookConfig = {
|
|
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
|
|
addons: ["@storybook/addon-docs"],
|
|
framework: "@storybook/react-vite",
|
|
};
|
|
export default config;
|