diff options
Diffstat (limited to 'packages/integrations/react/src')
-rw-r--r-- | packages/integrations/react/src/index.ts | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/integrations/react/src/index.ts b/packages/integrations/react/src/index.ts index a283938c3..4ae6ea77f 100644 --- a/packages/integrations/react/src/index.ts +++ b/packages/integrations/react/src/index.ts @@ -12,10 +12,9 @@ function getRenderer() { : '@astrojs/react/server-v17.js', jsxImportSource: 'react', jsxTransformOptions: async () => { - const { - default: { default: jsx }, - // @ts-expect-error types not found - } = await import('@babel/plugin-transform-react-jsx'); + // @ts-expect-error types not found + const babelPluginTransformReactJsxModule = await import('@babel/plugin-transform-react-jsx'); + const jsx = babelPluginTransformReactJsxModule?.default?.default ?? babelPluginTransformReactJsxModule?.default; return { plugins: [ jsx( |