Duplicate kinds #13838
Unanswered
miguel-maguca
asked this question in
Help
Duplicate kinds
#13838
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I migrated my Storybook installation to 6.1.11 (I know there are newer versions). I used the migration documentation to remove the multiple kinds issue. Instead of having multiple
export default {};
in each story file, I have oneexport default {};
and then add the following to access my other storiesexport * from './StoryOne.stories';
. However, when I access the docs tab, the documentation white screens and there are many errors in the console. The only way to get the docs to appear properly is to have theexport default {};
configuration in each file.Am I missing something in my configuration? Do I have too many things in my configuration?
This is my storybook config in package.json.
"@storybook/addon-actions": "^6.1.16", "@storybook/addon-console": "^1.2.2", "@storybook/addon-docs": "^6.1.11", "@storybook/addon-essentials": "^6.1.16", "@storybook/addon-knobs": "^6.1.11", "@storybook/addon-links": "^6.1.16", "@storybook/addon-storyshots": "^6.1.11", "@storybook/addon-storysource": "^6.1.11", "@storybook/addons": "^6.1.11", "@storybook/react": "^6.1.16",
Beta Was this translation helpful? Give feedback.
All reactions