Merge pull request #18740 from storybookjs/yann/sb-414-sb18395-cannot-anchor-to-headings-in-mdx

Addon docs: Pass remarks plugins to mdx loader
This commit is contained in:
Michael Shilman 2022-07-20 09:58:01 -07:00 committed by GitHub
commit 45a6c255bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,6 +54,7 @@ export async function webpack(
} = options;
const mdxLoaderOptions = {
// whether to skip storybook files, useful for docs only mdx or md files
skipCsf: true,
remarkPlugins: [remarkSlug, remarkExternalLinks],
};
@ -112,6 +113,10 @@ export async function webpack(
},
{
loader: mdxLoader,
options: {
...mdxLoaderOptions,
skipCsf: false,
},
},
],
},