Rsbuild optimizes build performance by default, but performance issues may arise as your project grows.
This document provides optional optimization strategies to improve build performance.
Performance profiling helps identify bottlenecks in your project, enabling targeted optimization.
See the Build Performance Analysis section.
These general optimization methods can speed up both development and production builds.
Upgrading to the latest version of Rsbuild provides access to the latest performance optimizations. See Upgrade Rsbuild for more details.
Rsbuild provides a performance.buildCache configuration that significantly improves rebuild speed.
Optimizing the number of modules your application uses reduces bundle size and improves build performance. See Bundle Size Optimization to learn optimization strategies.
When using Tailwind CSS v3, incorrectly configuring the content field in tailwind.config.js can lead to poor build and HMR performance.
See Tailwind CSS v3 - Optimize build performance for more details.
If your project uses the @rsbuild/plugin-less plugin with many Less files, you can try enabling parallel compilation to improve build performance.
See Less Plugin - parallel for more details.
While Rsbuild delivers excellent build performance out of the box, certain JavaScript-based tools can negatively impact performance, particularly in large projects.
These methods improve performance in development mode.
Enabling lazy compilation significantly reduces the number of modules compiled during dev server startup, improving startup time.
See dev.lazyCompilation for more information.
Enabling Rspack's native watcher improves HMR performance in development mode.
To provide a good debugging experience, Rsbuild uses the cheap-module-source-map format in development mode by default. This is a high-quality source map format that comes with some performance overhead.
You can improve build speed by adjusting the source map format through output.sourceMap.
For example, to disable source maps:
Or set the source map format to the fastest eval format in development mode:
For detailed differences between different source map formats, see Rspack - devtool.
This strategy is similar to "Adjust Browserslist", except you can set different browserslist configurations for development and production, reducing compilation overhead in development.
For example, you can add the following config to .browserslistrc to target only the latest browsers in development while supporting a broader range in production:
Note that this can lead to differences in build output between development and production modes.