mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:41:08 +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;
|
} = options;
|
||||||
|
|
||||||
const mdxLoaderOptions = {
|
const mdxLoaderOptions = {
|
||||||
|
// whether to skip storybook files, useful for docs only mdx or md files
|
||||||
skipCsf: true,
|
skipCsf: true,
|
||||||
remarkPlugins: [remarkSlug, remarkExternalLinks],
|
remarkPlugins: [remarkSlug, remarkExternalLinks],
|
||||||
};
|
};
|
||||||
@ -112,6 +113,10 @@ export async function webpack(
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
loader: mdxLoader,
|
loader: mdxLoader,
|
||||||
|
options: {
|
||||||
|
...mdxLoaderOptions,
|
||||||
|
skipCsf: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user