mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
- Add `babelDefault` and `managerHead` pages - Fix broken links - Clarify when some properties are primarily used by addon authors - Document simplified options for `babel`, `babelDefault`, `viteFinal`, and `webpackFinal` - Add description for `core.channelOptions` - Remove the `previewMainTemplate` page - Document possible shortcomings of some `stories` configurations - Document limitations of some `typescript` options
773 B
773 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'),
];