output.polyfill

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

通过 output.polyfill 选项,你可以控制 polyfills 的注入方式。

在 Rsbuild 0.x 版本中,output.polyfill 默认值为 'usage',从 Rsbuild 1.x 版本开始,默认值变为 'off'

可选值

usage

output.polyfill 配置为 'usage' 时,Rsbuild 会在每个文件中根据代码中使用的 API 注入 polyfills。

export default {
  output: {
    polyfill: 'usage',
  },
};

entry

output.polyfill 配置为 'entry' 时,Rsbuild 会在每个入口文件中注入 polyfills。

export default {
  output: {
    polyfill: 'entry',
  },
};

off

output.polyfill 配置为 'off' 时,Rsbuild 不会注入 polyfills,开发者需要自行保证代码的兼容性。

export default {
  output: {
    polyfill: 'off',
  },
};

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