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 Pageoutput.charset
Next Pageoutput.copy

#output.cleanDistPath

  • Type:
type CleanDistPath = boolean | 'auto' | CleanDistPathObject;
  • Default: 'auto'

Configure whether to clean all files in the output directory before the build starts. The output directory is the output.distPath.root directory.

#Default behavior

The default value of output.cleanDistPath is 'auto':

  • In development mode, if dev.writeToDisk is false, Rsbuild will not perform cleanup.
  • In any mode, if output.distPath.root is an external directory or equals the project root directory, Rsbuild will not perform cleanup to avoid accidentally deleting files from other directories.
rsbuild.config.ts
export default {
  output: {
    distPath: {
      root: '../../some-dir',
    },
  },
};

#Forced switch

Set cleanDistPath to true to force enable it, or false to force disable it.

rsbuild.config.ts
export default {
  output: {
    cleanDistPath: true,
  },
};

#Conditional

To clean files only in production mode and not in development mode, configure it as:

rsbuild.config.ts
export default {
  output: {
    cleanDistPath: process.env.NODE_ENV === 'production',
  },
};

#Options

output.cleanDistPath supports configuration as an object to achieve more granular control.

#enable

  • Type: boolean | 'auto'
  • Default: 'auto'

Whether to clean up all files in the output directory before the build starts.

rsbuild.config.ts
export default {
  output: {
    // Equivalent to `cleanDistPath: true`
    cleanDistPath: {
      enable: true,
    },
  },
};

#keep

  • Type: RegExp[]
  • Default: undefined

Specify the files to keep in the output directory. If the file's absolute path matches the regular expression in keep, the file will not be removed.

For example, to keep the dist/foo.json file:

rsbuild.config.ts
export default {
  output: {
    cleanDistPath: {
      keep: [/dist\/foo.json/],
    },
  },
};