close
logologo
指南
配置
插件
API
社区
版本
更新日志
Rsbuild 0.x 文档
English
简体中文
指南
配置
插件
API
社区
更新日志
Rsbuild 0.x 文档
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
📝 在 GitHub 上编辑此页
上一页output.overrideBrowserslist
下一页output.sourceMap

#output.polyfill

  • 类型: 'entry' | 'usage' | 'off'
  • 默认值: 'off'

控制 polyfills 的注入方式。

请查看 Polyfill 方案 了解详细内容。

#可选值

#usage

当 output.polyfill 配置为 'usage' 时,Rsbuild 会在每个文件中根据代码中使用的 API 注入 polyfills。这提供了最优的包体积,因为只包含所需的 polyfills。

rsbuild.config.ts
export default {
  output: {
    polyfill: 'usage',
  },
};

#entry

当 output.polyfill 配置为 'entry' 时,Rsbuild 会在每个入口文件中注入 polyfills。这确保了所有 polyfills 都可用,但可能会增加包体积。

rsbuild.config.ts
export default {
  output: {
    polyfill: 'entry',
  },
};
TIP

需要注意的是,当你将页面与 Web Workers 一起打包时,由于 Web Workers 线程与主线程(页面)环境隔离,entry 方案对 Web Workers 并不适用,此时可以使用 usage 方案。

#off

当 output.polyfill 配置为 'off' 时,Rsbuild 不会注入 polyfills,你需要自行处理代码的兼容性。

rsbuild.config.ts
export default {
  output: {
    polyfill: 'off',
  },
};