React
This document explains how to use Rsbuild to build a React application.
Create a React application
Create a React application with Rsbuild using create-rsbuild. Run this command:
Then select React 19 or React 18 when prompted to "Select framework".
Use React in an existing project
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:
For projects using Create React App, you can refer to the CRA Migration Guide.
Use SVGR
Rsbuild supports converting SVG to React components via SVGR.
To use SVGR, register the SVGR plugin.
React Fast Refresh
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:
The correct usage is to declare a name for each component function:
React Compiler
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.
How to use
Steps to use React Compiler in Rsbuild:
- Upgrade
reactandreact-domto v19. If you can't upgrade, install the react-compiler-runtime package to run the compiled code on earlier versions. - React Compiler currently only provides a Babel plugin. Install @rsbuild/plugin-babel and babel-plugin-react-compiler.
- Register the Babel plugin in your Rsbuild config file:
You can also refer to the example project.
Configuration
Set the config for React Compiler as follows:
For React 17 and 18 projects, install react-compiler-runtime and specify the target:
Router
TanStack Router
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
React Router is a user‑obsessed, standards‑focused, multi‑strategy router for React.
- To use React Router as a library, you can just follow the official documentation and no configuration is required.
- To use React Router as a framework, the community is working on an experimental Rsbuild plugin, see rsbuild-plugin-react-router.
CSS-in-JS
See CSS-in-JS for how to use CSS-in-JS in Rsbuild.
Customize JSX
Rsbuild uses SWC to compile JSX. You can customize the functions used by the compiled JSX code:
- If the JSX runtime is
automatic, use importSource to customize the import path of the JSX runtime, for example, import from Preact or Emotion. - If the JSX runtime is
classic, usepragmaandpragmaFragto specify the JSX function and Fragment component.
@rsbuild/plugin-reactusesautomaticas the default JSX runtime, see swcReactOptions.runtime.
Via configuration
Configure through the @rsbuild/plugin-react's swcReactOptions.
- If
runtimeisautomatic:
- If
runtimeisclassic:
Via comments
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.
- If the JSX runtime is
automatic:
- If the JSX runtime is
classic:
Performance profiling
React Scan
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.

