We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 624780e commit 6fab283Copy full SHA for 6fab283
packages/config/storybook-config/main.ts
@@ -38,6 +38,13 @@ const config: StorybookConfig = {
38
docs: {
39
autodocs: true,
40
},
41
+ // TEMP FIX: Attempted to resolveName for an unsupported path. resolveName does not accept ObjectMethod
42
+ // see: https://storybook.js.org/docs/api/main-config-typescript#reactdocgen
43
+ // see: https://github.com/storybookjs/storybook/issues/26652
44
+ // see: https://github.com/reactjs/react-docgen/issues/902
45
+ typescript: {
46
+ reactDocgen: false,
47
+ },
48
};
49
50
export default config;
0 commit comments