React refresh plugin for Rspack.
First you need to install this plugin and its dependencies:
npm add @rspack/plugin-react-refresh react-refresh -D
# or
yarn add @rspack/plugin-react-refresh react-refresh -D
# or
pnpm add @rspack/plugin-react-refresh react-refresh -D
# or
bun add @rspack/plugin-react-refresh react-refresh -D
Enabling React Fast Refresh functionality primarily involves two aspects: code injection and code transformation.
const ReactRefreshPlugin = require("@rspack/plugin-react-refresh");
const isDev = process.env.NODE_ENV === "development";
module.exports = {
experiments: {
rspackFuture: {
disableTransformByDefault: true,
},
},
// ...
mode: isDev ? "development" : "production",
module: {
rules: [
{
test: /\.jsx$/,
use: {
loader: "builtin:swc-loader",
options: {
jsc: {
parser: {
syntax: "ecmascript",
jsx: true,
},
transform: {
react: {
development: isDev,
refresh: isDev,
},
},
},
},
},
},
],
},
plugins: [isDev && new ReactRefreshPlugin()].filter(Boolean),
};
Compared to the previous approach, this method decouples the React Fast Refresh code injection logic from the transformation logic. The code injection logic is handled uniformly by this plugin, while the code transformation is handled by loaders. This means that this plugin can be used in conjunction with builtin:swc-loader
, swc-loader
, or babel-loader
.
builtin:swc-loader
, you can refer to the example at examples/react-refresh, When using with swc-loader
, simply replace builtin:swc-loader
with swc-loader
.babel-loader
, you can refer to the example at examples/react-refresh-babel-loader/\.([cm]js|[jt]sx?|flow)$/i
Include files to be processed by the plugin. The value is the same as the rule.test
option in Rspack.
new ReactRefreshPlugin({
include: [/\.jsx$/, /\.tsx$/],
});
/node_modules/
Exclude files from being processed by the plugin. The value is the same as the rule.exclude
option in Rspack.
new ReactRefreshPlugin({
exclude: [/node_modules/, /some-other-module/],
});
boolean
false
Whether to force enable the plugin.
By default, the plugin will not be enabled in non-development environments. If you want to force enable the plugin, you can set this option to true
.
new ReactRefreshPlugin({
forceEnable: true,
});
It is useful if you want to:
none
mode without setting NODE_ENV
.electron-prerender
(WARNING: Proceed at your own risk).string
output.uniqueName || output.library
Sets a namespace for the React Refresh runtime.
It is most useful when multiple instances of React Refresh is running together simultaneously.
boolean | OverlayOptions
false
Modify the behavior of the error overlay.
new ReactRefreshPlugin({
overlay: true,
});
new ReactRefreshPlugin({
overlay: {
// ...
},
});
Thanks to the react-refresh-webpack-plugin created by @pmmmwh, which inspires implement this plugin.
@rspack/plugin-react-refresh
is MIT licensed.