You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
** Disclaimer** This information might be inaccurate, due to it being generated automatically
This appears to be an issue with missing exports from the storybook/internal/components package. The error occurs because the Vue3 Vite builder is trying to import components that don't exist at the expected path.
To fix this:
Update your imports to use the correct paths: js import { WithTooltip, TooltipNote, Form } from '@storybook/components';
Add the following to your .storybook/main.js: js module.exports = { framework: '@storybook/vue3-vite', core: { disableTelemetry: true }, viteFinal: async (config) => { config.resolve.alias = { ...config.resolve.alias, 'storybook/internal/components': '@storybook/components' }; return config; } };
About Greptile
This response provides a starting point for your research, not a precise solution.
Help us improve! Please leave a 👍 if this is helpful and 👎 if it is irrelevant.
Describe the bug
select vue3 and vite
then run
pnpm storybook
The command line reported an error:
and on the page for http://localhost:6006/, error:
There are problems with almost all of your versions
Reproduction link
no
Reproduction steps
No response
System
Additional context
No response
The text was updated successfully, but these errors were encountered: