mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 11:11:53 +08:00
21 lines
370 B
Plaintext
21 lines
370 B
Plaintext
```js
|
|
// .storybook/preview.js
|
|
|
|
export default {
|
|
parameters: {
|
|
docs: {
|
|
toc: {
|
|
contentsSelector: '.sbdocs-content',
|
|
headingSelector: 'h1, h2, h3',
|
|
ignoreSelector: '#primary',
|
|
title: 'Table of Contents',
|
|
disable: false,
|
|
unsafeTocbotOptions: {
|
|
orderedList: false,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|
|
```
|