This document explains how to use Rsbuild to build a React application.
Create a React application with Rsbuild using create-rsbuild. Run this command:
npm create rsbuild@latestThen select React 19 or React 18 when prompted to "Select framework".
To compile React's JSX syntax, register the Rsbuild React Plugin. The plugin automatically adds the necessary configuration for building React applications.
For example, register in rsbuild.config.ts:
import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
export default defineConfig({
plugins: [pluginReact()],
});For projects using Create React App, you can refer to the CRA Migration Guide.
Rsbuild supports converting SVG to React components via SVGR.
To use SVGR, register the SVGR plugin.
Rsbuild uses React's official Fast Refresh capability to perform component hot updates.
React Refresh requires components to follow certain standards, or HMR may not work. Use eslint-plugin-react-refresh to validate your code.
If React component hot updates don't work, or component state is lost after updates, your React component is likely using an anonymous function. React Fast Refresh requires named functions to preserve component state after hot updates.
Here are some examples of wrong usage:
// bad
export default function () {
return <div>Hello World</div>;
}
// bad
export default () => <div>Hello World</div>;The correct usage is to declare a name for each component function:
// good
export default function MyComponent() {
return <div>Hello World</div>;
}
// good
const MyComponent = () => <div>Hello World</div>;
export default MyComponent;React Compiler is a build-time tool that automatically optimizes your React app. It works with plain JavaScript, and understands the Rules of React, so you don’t need to rewrite any code to use it.
Before using React Compiler, we recommend reading the React Compiler documentation to understand its functionality, current state, and usage.
Steps to use React Compiler in Rsbuild:
react and react-dom to v19. If you can't upgrade, install the react-compiler-runtime package to run the compiled code on earlier versions.import { defineConfig } from '@rsbuild/core';
import { pluginBabel } from '@rsbuild/plugin-babel';
import { pluginReact } from '@rsbuild/plugin-react';
export default defineConfig({
plugins: [
pluginReact(),
pluginBabel({
include: /\.(?:jsx|tsx)$/,
babelLoaderOptions(opts) {
opts.plugins?.unshift('babel-plugin-react-compiler');
},
}),
],
});You can also refer to the example project.
Set the config for React Compiler as follows:
import { defineConfig } from '@rsbuild/core';
import { pluginBabel } from '@rsbuild/plugin-babel';
import { pluginReact } from '@rsbuild/plugin-react';
const ReactCompilerConfig = {
/* ... */
};
export default defineConfig({
plugins: [
pluginReact(),
pluginBabel({
include: /\.(?:jsx|tsx)$/,
babelLoaderOptions(opts) {
opts.plugins?.unshift([
'babel-plugin-react-compiler',
ReactCompilerConfig,
]);
},
}),
],
});For React 17 and 18 projects, install react-compiler-runtime and specify the target:
const ReactCompilerConfig = {
target: '18', // '17' | '18' | '19'
};TanStack Router is a fully type-safe React router with built-in data fetching, stale-while revalidate caching and first-class search-param APIs.
TanStack Router provides @tanstack/router-plugin to integrate with Rsbuild, which provides support for file-based routing. See:
React Router is a user‑obsessed, standards‑focused, multi‑strategy router for React.
See CSS-in-JS for how to use CSS-in-JS in Rsbuild.
Rsbuild uses SWC to compile JSX. You can customize the functions used by the compiled JSX code:
automatic, use jsxImportSource to customize the import path of the JSX runtime, for example, import from Preact or Emotion.classic, use pragma and pragmaFrag to specify the JSX function and Fragment component.
@rsbuild/plugin-reactusesautomaticas the default JSX runtime, see swcReactOptions.runtime.
Configure through the @rsbuild/plugin-react's swcReactOptions.
runtime is automatic:import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
export default defineConfig({
plugins: [
pluginReact({
swcReactOptions: {
runtime: 'automatic',
jsxImportSource: '@emotion/react',
},
}),
],
});runtime is classic:import { defineConfig } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
export default defineConfig({
plugins: [
pluginReact({
swcReactOptions: {
runtime: 'classic',
pragma: 'h',
pragmaFrag: 'Fragment',
},
}),
],
});You can also customize JSX behavior by adding specific comments at the top of individual JSX or TSX files, which will take precedence over the configuration.
automatic:/** @jsxImportSource custom-jsx-library */
const App = () => {
return <div>Hello World</div>;
};classic:/** @jsx Preact.h */
/** @jsxFrag Preact.Fragment */
const App = () => {
return <div>Hello World</div>;
};React Scan can automatically detect performance issues in your React app.
See React Scan - Rsbuild Guide to learn how to use React Scan with Rsbuild.