mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
fix(addon-docs): pass remark plugins to mdx loader
This commit is contained in:
parent
e9655dfb92
commit
b6b6cf176b
@ -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,
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user