mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 02:11:07 +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.
|
||||
// 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
|
||||
const viteBabel: Plugin | undefined = reactVite().find((p) => p.name === 'vite:react-babel');
|
||||
// @ts-expect-error We're forcing the plugin shape here
|
||||
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:
|
||||
|
Loading…
x
Reference in New Issue
Block a user