Skip to content

Commit ac46c87

Browse files
committed
CR
1 parent 1227640 commit ac46c87

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()
@@ -176,7 +172,16 @@ export default function viteReact(opts: Options = {}): PluginOption[] {
176172
})()
177173
const plugins = [...babelOptions.plugins]
178174

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

187192
let prependReactImport = false
188-
if (opts.jsxRuntime === 'classic' && filepath.endsWith('x')) {
193+
if (opts.jsxRuntime === 'classic' && isJSX) {
189194
if (!isProduction) {
190195
// These development plugins are only needed for the classic runtime.
191196
plugins.push(
@@ -238,7 +243,7 @@ export default function viteReact(opts: Options = {}): PluginOption[] {
238243
parserPlugins.push('jsx')
239244
}
240245

241-
if (/\.tsx?$/.test(filepath)) {
246+
if (tsRE.test(filepath)) {
242247
parserPlugins.push('typescript')
243248
}
244249

@@ -337,7 +342,3 @@ function createBabelOptions(rawOptions?: BabelOptions) {
337342
function defined<T>(value: T | undefined): value is T {
338343
return value !== undefined
339344
}
340-
341-
function arraify<T>(target: T | T[]): T[] {
342-
return Array.isArray(target) ? target : [target]
343-
}

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)