Design system.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

34 lines
616 B

  1. import type { StorybookConfig } from "@storybook/react-vite";
  2. const config: StorybookConfig = {
  3. stories: [
  4. {
  5. directory: "../../../categories/web",
  6. files: "*/react/src/**/*.stories.tsx",
  7. }
  8. ],
  9. addons: [
  10. "@storybook/addon-links",
  11. "@storybook/addon-essentials",
  12. "@storybook/addon-onboarding",
  13. "@storybook/addon-interactions",
  14. {
  15. name: "@storybook/addon-styling",
  16. options: {},
  17. },
  18. {
  19. name: "@storybook/addon-styling",
  20. options: {},
  21. },
  22. ],
  23. core: {
  24. builder: "@storybook/builder-vite",
  25. },
  26. framework: {
  27. name: "@storybook/react-vite",
  28. options: {},
  29. },
  30. };
  31. export default config;