Skip to content

Commit 9b96a4b

Browse files
committed
CR
1 parent 2f701d1 commit 9b96a4b

File tree

3 files changed

+26
-17
lines changed

3 files changed

+26
-17
lines changed

packages/plugin-react/README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,18 @@ import react from '@vitejs/plugin-react'
2929
import mdx from '@mdx-js/rollup'
3030

3131
export default defineConfig({
32-
plugins: [mdx(), react({ include: /.mdx$/ })],
32+
plugins: [
33+
{ enforce: 'pre', ...mdx() },
34+
react({ include: /\.(mdx|js|jsx|ts|tsx)$/ }),
35+
],
3336
})
3437
```
3538

39+
> `node_modules` are never processed by this plugin (but esbuild will)
40+
3641
### jsxImportSource
3742

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.
3944

4045
```js
4146
react({ jsxImportSource: '@emotion/react' })

packages/plugin-react/src/index.ts

+15-14
Original file line numberDiff line numberDiff line change
@@ -78,17 +78,13 @@ declare module 'vite' {
7878

7979
const prependReactImportCode = "import React from 'react'; "
8080
const refreshContentRE = /\$Refresh(?:Reg|Sig)\$\(/
81-
const defaultIncludeRE = /\.(?:mjs|[tj]sx?)$/
81+
const defaultIncludeRE = /\.[tj]sx?$/
82+
const tsRE = /\.tsx?$/
8283

8384
export default function viteReact(opts: Options = {}): PluginOption[] {
8485
// Provide default values for Rollup compat.
8586
let devBase = '/'
86-
const filter = createFilter(
87-
opts.include === undefined
88-
? defaultIncludeRE
89-
: [defaultIncludeRE, ...arraify(opts.include)],
90-
opts.exclude,
91-
)
87+
const filter = createFilter(opts.include ?? defaultIncludeRE, opts.exclude)
9288
let needHiresSourcemap = false
9389
let isProduction = true
9490
let projectRoot = process.cwd()
@@ -173,7 +169,16 @@ export default function viteReact(opts: Options = {}): PluginOption[] {
173169
})()
174170
const plugins = [...babelOptions.plugins]
175171

176-
const useFastRefresh = !skipFastRefresh && !ssr
172+
const isJSX = filepath.endsWith('x')
173+
const useFastRefresh =
174+
!skipFastRefresh &&
175+
!ssr &&
176+
(isJSX ||
177+
(opts.jsxRuntime === 'classic'
178+
? code.includes(
179+
`${opts.jsxImportSource ?? 'react'}/jsx-dev-runtime`,
180+
)
181+
: importReactRE.test(code)))
177182
if (useFastRefresh) {
178183
plugins.push([
179184
await loadPlugin('react-refresh/babel'),
@@ -182,7 +187,7 @@ export default function viteReact(opts: Options = {}): PluginOption[] {
182187
}
183188

184189
let prependReactImport = false
185-
if (opts.jsxRuntime === 'classic' && filepath.endsWith('x')) {
190+
if (opts.jsxRuntime === 'classic' && isJSX) {
186191
if (!isProduction) {
187192
// These development plugins are only needed for the classic runtime.
188193
plugins.push(
@@ -226,7 +231,7 @@ export default function viteReact(opts: Options = {}): PluginOption[] {
226231
parserPlugins.push('jsx')
227232
}
228233

229-
if (/\.tsx?$/.test(filepath)) {
234+
if (tsRE.test(filepath)) {
230235
parserPlugins.push('typescript')
231236
}
232237

@@ -325,7 +330,3 @@ function createBabelOptions(rawOptions?: BabelOptions) {
325330
function defined<T>(value: T | undefined): value is T {
326331
return value !== undefined
327332
}
328-
329-
function arraify<T>(target: T | T[]): T[] {
330-
return Array.isArray(target) ? target : [target]
331-
}

playground/mdx/vite.config.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@ import mdx from '@mdx-js/rollup'
44

55
// https://vitejs.dev/config/
66
export default defineConfig({
7-
plugins: [{ enforce: 'pre', ...mdx() }, react({ include: /.mdx$/ })],
7+
plugins: [
8+
{ enforce: 'pre', ...mdx() },
9+
react({ include: /\.(mdx|ts|tsx)$/ }),
10+
],
811
})

0 commit comments

Comments
 (0)