mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:21:06 +08:00
- Rename `introduction.md`, `overview.md`, `how-to-contribute.md` pages -> `index.md` pages - Add all-new `index.md` pages for Sharing and API - Find/replace `introduction.md`/`overview.md` -> `index.md` - Find/replace `/introduction`/`/overview` -> `/` - Add `hideRendererSelector: true` to frontmatter of (some) pages that aren't conditional on renderer
786 B
786 B
title |
---|
previewAnnotations |
Parent: main.js|ts configuration
Type: string[] | ((config: string[], options: Options) => string[] | Promise<string[]>)
Add additional scripts to run in the story preview.
Mostly used by frameworks. Storybook users and addon authors should add scripts to preview.js
instead.
// @storybook/nextjs framework's src/preset.ts
import type { StorybookConfig } from './types';
export const previewAnnotations: StorybookConfig['previewAnnotations'] = (entry = []) => [
...entry,
require.resolve('@storybook/nextjs/preview.js'),
];