File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
integration-tests/fixtures/bundle-size-optimizations/input Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -248,7 +248,7 @@ export function sentryUnpluginFactory({
248
248
replacementValues [ "__SENTRY_DEBUG__" ] = false ;
249
249
}
250
250
if ( bundleSizeOptimizations . excludeTracing ) {
251
- replacementValues [ "__SENTRY_TRACE__ " ] = false ;
251
+ replacementValues [ "__SENTRY_TRACING__ " ] = false ;
252
252
}
253
253
if ( bundleSizeOptimizations . excludeReplayCanvas ) {
254
254
replacementValues [ "__RRWEB_EXCLUDE_CANVAS__" ] = true ;
Original file line number Diff line number Diff line change @@ -447,7 +447,7 @@ export type IncludeEntry = {
447
447
448
448
export interface SentrySDKBuildFlags extends Record < string , boolean | undefined > {
449
449
__SENTRY_DEBUG__ ?: boolean ;
450
- __SENTRY_TRACE__ ?: boolean ;
450
+ __SENTRY_TRACING__ ?: boolean ;
451
451
__RRWEB_EXCLUDE_CANVAS__ ?: boolean ;
452
452
__RRWEB_EXCLUDE_IFRAME__ ?: boolean ;
453
453
__RRWEB_EXCLUDE_SHADOW_DOM__ ?: boolean ;
Original file line number Diff line number Diff line change 1
1
console . log ( {
2
2
debug : __SENTRY_DEBUG__ ? "a" : "b" ,
3
- trace : __SENTRY_TRACE__ ? "a" : "b" ,
3
+ trace : __SENTRY_TRACING__ ? "a" : "b" ,
4
4
replayCanvas : __RRWEB_EXCLUDE_CANVAS__ ? "a" : "b" ,
5
5
replayIframe : __RRWEB_EXCLUDE_IFRAME__ ? "a" : "b" ,
6
6
replayShadowDom : __RRWEB_EXCLUDE_SHADOW_DOM__ ? "a" : "b" ,
You can’t perform that action at this time.
0 commit comments