Skip to content

v1.0.0-alpha.4

Compare
Choose a tag to compare
@chenjiahan chenjiahan released this 05 Jul 05:45
· 1041 commits to main since this release
674576f

What's Changed

Breaking Change 💡

Rsbuild 1.0.0-alpha.4 set output.polyfill to 'off' by default, this can reduce the polyfill code and generate smaller bundles by default.

If your application need polyfill, please set output.polyfill to 'usage' or 'entry':

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

See the vote on Twitter: https://x.com/rspack_dev/status/1808439138439274780

New Features 🎉

Performance 🚀

Document 📖

  • docs: add get environment context info guide by @9aoy in #2796

Other Changes

Full Changelog: v1.0.0-alpha.3...v1.0.0-alpha.4