You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/plugin-react/README.md
+7-2
Original file line number
Diff line number
Diff line change
@@ -29,13 +29,18 @@ import react from '@vitejs/plugin-react'
29
29
importmdxfrom'@mdx-js/rollup'
30
30
31
31
exportdefaultdefineConfig({
32
-
plugins: [mdx(), react({ include:/.mdx$/ })],
32
+
plugins: [
33
+
{ enforce:'pre', ...mdx() },
34
+
react({ include:/\.(mdx|js|jsx|ts|tsx)$/ }),
35
+
],
33
36
})
34
37
```
35
38
39
+
> `node_modules` are never processed by this plugin (but esbuild will)
40
+
36
41
### jsxImportSource
37
42
38
-
Control where the JSX factory is imported from. For TS projects this is inferred from the tsconfig.
43
+
Control where the JSX factory is imported from. For TS projects this is inferred from the tsconfig. If you have some React code outside JSX/TSX files, this will be used to detect the presence of React code and apply Fast Refresh.
0 commit comments