Web Workers
This page explains how to configure and use Web Workers in an Rsbuild project.
Web Workers are a type of JavaScript program that runs in the background, independently of other scripts, without affecting the performance of the page. This makes it possible to run long-running scripts, such as ones that handle complex calculations or access remote resources, without blocking the user interface or other scripts. Web workers provide an easy way to run tasks in the background and improve the overall performance of web applications.
Use Web Workers
Import with constructors
Rspack provides built-in support for Web Workers, so you can use them directly in Rsbuild projects without adding extra loaders.
For example, create a file called worker.js:
Then use this worker in the main thread:
With the standard constructor syntax, you can also pass WorkerOptions as the second argument. Rsbuild preserves runtime options such as name and credentials, and uses type to determine whether the worker should be handled as a module worker or a classic worker.
Rspack supports multiple Worker syntaxes by default. See Rspack - Web Workers for more information.
Import with query suffixes
Rsbuild supports importing Web Workers with query suffixes in Rsbuild v2.0.7 and later.
Basic usage
You can also import a Web Worker script by appending ?worker to the import request. The default export is a custom Worker constructor.
Worker options
The constructor generated by ?worker only accepts the name option and passes it to the underlying Worker. It does not pass through the full WorkerOptions object. If you need options such as credentials or type, use the standard constructor syntax instead:
Worker type
For ?worker and ?worker&inline, Rsbuild determines whether to create a module worker based on output.module.
When output.module is true, the generated Worker constructor uses { type: 'module' }; otherwise, it omits type and the browser creates a classic worker.
Inline workers
By default, the worker script is emitted as a separate chunk in the production build. If you want to inline the worker script, add the inline query:
Type declarations
When you import workers with ?worker in TypeScript code, TypeScript may prompt that the module is missing a type definition:
To fix this, add a type declaration file, such as src/env.d.ts, and reference the preset types provided by @rsbuild/core:
The preset types include declarations for *?worker, *?worker&inline, and *?inline&worker.
Importing package workers
JavaScript files in node_modules are not compiled by Rsbuild's JavaScript rule by default. Since the ?worker query is handled by this rule, it will not take effect when the request resolves to a worker file in node_modules, whether the import is written in your application code or inside a package.
To make the query take effect, add the package that contains the worker file to source.include:
Loading scripts from remote URLs
By default, the worker script is emitted as a separate chunk. You can upload this file to a CDN, but it must follow the same-origin policy.
If you want your worker scripts to be accessible across domains, a common solution is to load them via importScripts (not subject to CORS). You can refer to the following code:
For detailed discussions on cross-domain issues, please refer to Discussions - webpack 5 web worker support for CORS?
Browser compatibility
When your application includes both main-thread code and Web Workers created with new Worker, note that Web Workers run in isolated threads and do not share the main-thread environment. As a result, Rsbuild’s polyfill entry mode does not apply to Web Workers. In this case, it’s recommended to use the usage mode to inject the required polyfills directly into each Web Worker.
Standalone build
Rsbuild supports standalone building of Web Workers bundles. When you need to configure independent build options for Web Workers or provide Web Workers for use by other applications, you can use the following methods.
Set Rsbuild's output.target configuration option to 'web-worker' to generate build artifacts that run in Worker threads.
Use environments to build both Web Workers and the main application simultaneously:

