mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-22 16:48:23 +01:00
c3e71c5c7d
Co-authored-by: Mike Sawka <sawka@users.noreply.github.com> Co-authored-by: sawka <mike.sawka@gmail.com>
34 lines
727 B
TypeScript
34 lines
727 B
TypeScript
import type { StorybookConfig } from "@storybook/react-vite";
|
|
|
|
const config: StorybookConfig = {
|
|
stories: ["../frontend/**/*.mdx", "../frontend/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
|
|
|
|
addons: [
|
|
"@storybook/addon-links",
|
|
"@storybook/addon-essentials",
|
|
"@chromatic-com/storybook",
|
|
"@storybook/addon-interactions",
|
|
],
|
|
|
|
core: {
|
|
builder: "@storybook/builder-vite",
|
|
},
|
|
|
|
framework: {
|
|
name: "@storybook/react-vite",
|
|
options: {},
|
|
},
|
|
|
|
docs: {},
|
|
|
|
managerHead: (head) => `
|
|
${head}
|
|
<meta name="robots" content="noindex" />
|
|
`,
|
|
|
|
typescript: {
|
|
reactDocgen: "react-docgen-typescript",
|
|
},
|
|
};
|
|
export default config;
|