mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 11:48:04 +00:00
* Updated Story book to the latest one * Updated tailwindcss related packages and config * Fixed Storybook * Added missed colors * Fixed CSS for the error dialog
22 lines
379 B
TypeScript
22 lines
379 B
TypeScript
import type { StorybookConfig } from "@storybook/react-vite";
|
|
|
|
const config: StorybookConfig = {
|
|
stories: ["../src/**/*.stories.@(js|jsx|ts|tsx|mdx)"],
|
|
|
|
addons: [
|
|
"@storybook/addon-links",
|
|
"@storybook/addon-docs"
|
|
],
|
|
core: {},
|
|
|
|
framework: {
|
|
name: "@storybook/react-vite",
|
|
options: {},
|
|
},
|
|
features: {
|
|
mdx2Csf: true,
|
|
}
|
|
};
|
|
|
|
export default config;
|