mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
Prevent fast-refresh on mdx files
This commit is contained in:
parent
4b179ad73f
commit
fd263f8275
@ -14,8 +14,11 @@ function injectRenderer(code: string) {
|
|||||||
|
|
||||||
// HACK: find a better way to do this, ideally avoiding @vitejs/plugin-react entirely.
|
// HACK: find a better way to do this, ideally avoiding @vitejs/plugin-react entirely.
|
||||||
// We're just using it to run the mdx with jsx through babel
|
// We're just using it to run the mdx with jsx through babel
|
||||||
// @ts-expect-error we know these have names, and what the shape will be
|
// @ts-expect-error We're forcing the plugin shape here
|
||||||
const viteBabel: Plugin | undefined = reactVite().find((p) => p.name === 'vite:react-babel');
|
const viteBabel: Plugin | undefined = reactVite({ fastRefresh: false }).find(
|
||||||
|
// @ts-expect-error we know these have names, and what the shape will be
|
||||||
|
(p) => p.name === 'vite:react-babel'
|
||||||
|
);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Storybook uses two different loaders when dealing with MDX:
|
* Storybook uses two different loaders when dealing with MDX:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user