keycloak-theme/.storybook/main.ts

13 lines
330 B
TypeScript
Raw Normal View History

2024-02-13 01:03:13 +01:00
import type { StorybookConfig } from "@storybook/react-vite";
const config: StorybookConfig = {
2024-06-06 05:26:06 +02:00
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
2024-06-09 15:13:39 +02:00
addons: [],
2024-06-06 05:26:06 +02:00
framework: {
name: "@storybook/react-vite",
options: {}
},
2024-06-09 15:00:18 +02:00
staticDirs: ["../public"]
2024-02-13 01:03:13 +01:00
};
export default config;