v2.2.0
Support for Vite and Rollup.
You can now use the plugin with Vite and Rollup.
Check out our updated README for more details.
Breaking Changes
rum.sourcemaps
won't automatically bail on error
We added a new configuration rum.sourcemaps.bailOnError
that is false
by default.
Previous behaviour was true
by default.
To have the same behaviour as before use:
{
rum: {
sourcemaps: {
+ bailOnError: true,
}
}
}
What's Changed
- [bundle] Add vite and rollup by @yoannmoinet in #86
- [rum] Change how we handle errors in sourcemaps upload by @yoannmoinet in #89
Full Changelog: v2.1.0...v2.2.0