storybook/docs/snippets/common/storybook-main-enable-transcludemarkdown.js.mdx
saseungmin dc497289e5 [Fix] Tyop in storybook-main-enable-transcludemarkdown.js.mdx
- Fix to code snippets in "https://storybook.js.org/docs/7.0/react/writing-docs/mdx"
- Fix typo storybook-main-enable-transcludemarkdown.js.mdx
2022-05-29 00:21:46 +09:00

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
},
},
],
};
```