mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:21:07 +08:00
Vite: Fix framework typing issues with a hack
This commit is contained in:
parent
79427cdd0f
commit
d1418038d3
@ -43,7 +43,7 @@ export const viteFinal: StorybookConfig['viteFinal'] = async (config, { presets
|
||||
} else if (reactDocgen) {
|
||||
const { reactDocgen } = await import('./plugins/react-docgen');
|
||||
// Needs to run before the react plugin, so add to the front
|
||||
plugins.unshift(reactDocgen());
|
||||
plugins.unshift(reactDocgen() as any);
|
||||
}
|
||||
|
||||
return config;
|
||||
|
@ -22,7 +22,7 @@ export function readPackageJson(): Record<string, any> | false {
|
||||
export const viteFinal: StorybookConfig['viteFinal'] = async (config, { presets }) => {
|
||||
const { plugins = [] } = config;
|
||||
|
||||
plugins.push(svelteDocgen(config));
|
||||
plugins.push(svelteDocgen(config) as any);
|
||||
|
||||
return {
|
||||
...config,
|
||||
|
@ -22,7 +22,7 @@ export function readPackageJson(): Record<string, any> | false {
|
||||
export const viteFinal: StorybookConfig['viteFinal'] = async (config, { presets }) => {
|
||||
const { plugins = [] } = config;
|
||||
|
||||
plugins.push(vueDocgen());
|
||||
plugins.push(vueDocgen() as any);
|
||||
|
||||
const updated = {
|
||||
...config,
|
||||
|
Loading…
x
Reference in New Issue
Block a user