2023-11-24 12:24:47 +01:00
|
|
|
/** @type { import('@storybook/react-vite').StorybookConfig } */
|
|
|
|
const config = {
|
|
|
|
stories: ["../src/**/*.mdx", "../src/**/*.stories.@(js|jsx|mjs|ts|tsx)"],
|
|
|
|
staticDirs: ["../resources/public"],
|
2024-11-25 15:11:54 +01:00
|
|
|
addons: ["@storybook/addon-essentials", "@storybook/addon-themes", "@storybook/addon-interactions"],
|
2024-07-11 15:41:24 +02:00
|
|
|
core: {
|
|
|
|
builder: "@storybook/builder-vite",
|
|
|
|
options: {
|
|
|
|
viteConfigPath: "../vite.config.js",
|
|
|
|
},
|
|
|
|
},
|
2023-11-24 12:24:47 +01:00
|
|
|
framework: {
|
|
|
|
name: "@storybook/react-vite",
|
|
|
|
options: {},
|
|
|
|
},
|
2024-07-11 15:41:24 +02:00
|
|
|
docs: {},
|
2023-11-24 12:24:47 +01:00
|
|
|
};
|
|
|
|
export default config;
|