Skip to content

Commit

Permalink
removed autodocs from storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
bearni95 committed May 14, 2024
1 parent 3399cd1 commit b98020f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
9 changes: 6 additions & 3 deletions packages/ui-lib/.storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,13 @@ export const framework = {
options: {}
};

export const docs = {autodocs: 'tag'};
export const addons = ['@storybook/addon-links',
export const docs = {autodocs: false};
export const addons = [
'@storybook/addon-links',
'@storybook/addon-essentials',
'@chromatic-com/storybook',
'@storybook/addon-interactions'];
'@storybook/addon-interactions'
];


const config: StorybookConfig = {
Expand All @@ -21,6 +23,7 @@ const config: StorybookConfig = {
name: '@storybook/sveltekit',
options: {}
},
docs
};


Expand Down
3 changes: 2 additions & 1 deletion packages/ui-lib/src/stories/Footer/Footer.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ import { Footer } from '../../lib/components/Footer';
// More on how to set up stories at: https://storybook.js.org/docs/writing-stories
const meta = {
title: 'Footer',
component: Footer
component: Footer,
tags:[],
//tags: ['autodocs'],
/*
argTypes: {
Expand Down

0 comments on commit b98020f

Please sign in to comment.