mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:51:06 +08:00
Fix runtime
This commit is contained in:
parent
1d2ee2ff01
commit
d04b25810c
@ -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));
|
||||
|
||||
|
@ -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> {
|
||||
|
Loading…
x
Reference in New Issue
Block a user