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({
248248 replacementValues [ "__SENTRY_DEBUG__" ] = false ;
249249 }
250250 if ( bundleSizeOptimizations . excludeTracing ) {
251- replacementValues [ "__SENTRY_TRACE__ " ] = false ;
251+ replacementValues [ "__SENTRY_TRACING__ " ] = false ;
252252 }
253253 if ( bundleSizeOptimizations . excludeReplayCanvas ) {
254254 replacementValues [ "__RRWEB_EXCLUDE_CANVAS__" ] = true ;
Original file line number Diff line number Diff line change @@ -447,7 +447,7 @@ export type IncludeEntry = {
447447
448448export interface SentrySDKBuildFlags extends Record < string , boolean | undefined > {
449449 __SENTRY_DEBUG__ ?: boolean ;
450- __SENTRY_TRACE__ ?: boolean ;
450+ __SENTRY_TRACING__ ?: boolean ;
451451 __RRWEB_EXCLUDE_CANVAS__ ?: boolean ;
452452 __RRWEB_EXCLUDE_IFRAME__ ?: boolean ;
453453 __RRWEB_EXCLUDE_SHADOW_DOM__ ?: boolean ;
Original file line number Diff line number Diff line change 11console . log ( {
22 debug : __SENTRY_DEBUG__ ? "a" : "b" ,
3- trace : __SENTRY_TRACE__ ? "a" : "b" ,
3+ trace : __SENTRY_TRACING__ ? "a" : "b" ,
44 replayCanvas : __RRWEB_EXCLUDE_CANVAS__ ? "a" : "b" ,
55 replayIframe : __RRWEB_EXCLUDE_IFRAME__ ? "a" : "b" ,
66 replayShadowDom : __RRWEB_EXCLUDE_SHADOW_DOM__ ? "a" : "b" ,
You can’t perform that action at this time.
0 commit comments