mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 08:21:06 +08:00
- Fix to code snippets in "https://storybook.js.org/docs/7.0/react/writing-docs/mdx" - Fix typo storybook-main-enable-transcludemarkdown.js.mdx
23 lines
506 B
Plaintext
23 lines
506 B
Plaintext
```js
|
|
// .storybook/main.js|ts
|
|
|
|
module.exports = {
|
|
stories: [
|
|
//👇 Changes the load order of our stories. First loads the Changelog page
|
|
'../src/Changelog.stories.mdx',
|
|
'../stories/**/*.stories.mdx',
|
|
'../stories/**/*.stories.@(js|jsx|ts|tsx)'
|
|
],
|
|
addons: [
|
|
'@storybook/addon-links',
|
|
'@storybook/addon-essentials',
|
|
{
|
|
name: '@storybook/addon-docs',
|
|
options: {
|
|
transcludeMarkdown: true, //👈 Set transcludeMarkdown to true
|
|
},
|
|
},
|
|
],
|
|
};
|
|
```
|