```js // .storybook/main.js|ts export default { stories: [ //👇 Changes the load order of our stories. First loads the Changelog page '../src/Changelog.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 }, }, ], }; ```