close
logologo
Guide
Config
Plugin
API
Community
Version
Changelog
Rsbuild 0.x Doc
English
简体中文
Guide
Config
Plugin
API
Community
Changelog
Rsbuild 0.x Doc
English
简体中文
logologo
Overview
root
mode
plugins
logLevel
environments

dev

dev.assetPrefix
dev.browserLogs
dev.cliShortcuts
dev.client
dev.hmr
dev.lazyCompilation
dev.liveReload
dev.progressBar
dev.setupMiddlewares
dev.watchFiles
dev.writeToDisk

resolve

resolve.aliasStrategy
resolve.alias
resolve.conditionNames
resolve.dedupe
resolve.extensions
resolve.mainFields

source

source.assetsInclude
source.decorators
source.define
source.entry
source.exclude
source.include
source.preEntry
source.transformImport
source.tsconfigPath

output

output.assetPrefix
output.charset
output.cleanDistPath
output.copy
output.cssModules
output.dataUriLimit
output.distPath
output.emitAssets
output.emitCss
output.externals
output.filenameHash
output.filename
output.injectStyles
output.inlineScripts
output.inlineStyles
output.legalComments
output.manifest
output.minify
output.module
output.overrideBrowserslist
output.polyfill
output.sourceMap
output.target

html

html.appIcon
html.crossorigin
html.favicon
html.inject
html.meta
html.mountId
html.outputStructure
html.scriptLoading
html.tags
html.templateParameters
html.template
html.title

server

server.base
server.compress
server.cors
server.headers
server.historyApiFallback
server.host
server.htmlFallback
server.https
server.middlewareMode
server.open
server.port
server.printUrls
server.proxy
server.publicDir
server.strictPort

security

security.nonce
security.sri

tools

tools.bundlerChain
tools.cssExtract
tools.cssLoader
tools.htmlPlugin
tools.lightningcssLoader
tools.postcss
tools.rspack
tools.styleLoader
tools.swc

performance

performance.buildCache
performance.bundleAnalyze
performance.chunkSplit
performance.dnsPrefetch
performance.preconnect
performance.prefetch
performance.preload
performance.printFileSize
performance.profile
performance.removeConsole
performance.removeMomentLocale

moduleFederation

moduleFederation.options
📝 Edit this page on GitHub
Previous Pageresolve.conditionNames
Next Pageresolve.extensions

#resolve.dedupe

  • Type: string[]
  • Default: undefined
  • Version: >= 1.1.7

Force Rsbuild to resolve the specified packages from project root, which is useful for deduplicating packages and reducing the bundle size.

#Example

For example, assume your project is based on React 19, and you are using the foo package that depends on React 17, then your project will have two different versions of React:

app/
├── src/
└── node_modules/
    ├── foo/
    │   └── node_modules/
    │       ├── react (v17)
    │       └── react-dom (v17)
    ├── react (v19)
    └── react-dom (v19)

In this case, you can use the resolve.dedupe config to remove the duplicate React packages, and resolve all react and react-dom packages to /node_modules/react and /node_modules/react-dom:

rsbuild.config.ts
export default defineConfig({
  resolve: {
    dedupe: ['react', 'react-dom'],
  },
});

Note that using resolve.dedupe to unify different major versions of a package may cause some packages to fail because they may depend on specific versions of APIs or features.

For example, if foo depends on a React 17-specific API or feature, then unifying React 17 and React 19 with React 19 using resolve.dedupe may cause foo to fail.

#How it works

resolve.dedupe is implemented based on resolve.alias, it will get the path of the specified package through require.resolve in the project root directory and set it to the alias.

In the above example, resolve.dedupe will be converted to the following alias config:

const alias = {
  react: '/app/node_modules/react',
  'react-dom': '/app/node_modules/react-dom',
};

The alias generated by resolve.dedupe will be merged with the configured resolve.alias in the project, and the resolve.alias config will take precedence when the keys are the same.