Fix runtime

This commit is contained in:
Kasper Peulen 2025-01-06 15:23:31 +01:00
parent 1d2ee2ff01
commit d04b25810c
2 changed files with 7 additions and 2 deletions

View File

@ -14,7 +14,7 @@ export async function generateModernIframeScriptCode(options: Options, projectRo
[],
options
);
const [previewFileUrl, ...previewAnnotationURLs] = [...previewAnnotations, previewOrConfigFile]
const [previewFileUrl, ...previewAnnotationURLs] = [previewOrConfigFile, ...previewAnnotations]
.filter(Boolean)
.map((path) => processPreviewAnnotation(path, projectRoot));

View File

@ -10,10 +10,15 @@ import type {
StoryAnnotations,
} from 'storybook/internal/types';
import * as reactAnnotations from './entry-preview';
import * as reactDocsAnnotations from './entry-preview-docs';
import type { ReactRenderer } from './types';
export function defineConfig(config: PreviewConfigData<ReactRenderer>) {
return new PreviewConfig(config);
return new PreviewConfig({
...config,
addons: [reactAnnotations, reactDocsAnnotations, ...(config.addons ?? [])],
});
}
interface PreviewConfigData<TRenderer extends Renderer> extends ProjectAnnotations<TRenderer> {