keycloak-theme/.storybook/main.ts

13 lines
330 B
TypeScript
Raw Normal View History

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