We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Storybook changed which appType was used in it's vitebuilder to be 'custom' – storybookjs/builder-vite#453 which causes the check within the workaround plugin to not work.
appType
if (server.config.appType !== 'custom') {
This means that the fonts aren't loading in storybook.
The workaround that I'm using at the moment is putting this in my storybook config:
viteFinal: async (config) => { config.appType = 'spa'; return config; },
But I don't think that's a long term fix, I think a new check will be needed.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Storybook changed which
appType
was used in it's vitebuilder to be 'custom' – storybookjs/builder-vite#453 which causes the check within the workaround plugin to not work.This means that the fonts aren't loading in storybook.
The workaround that I'm using at the moment is putting this in my storybook config:
But I don't think that's a long term fix, I think a new check will be needed.
The text was updated successfully, but these errors were encountered: