You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* If set to `true`, the plugin will attempt to tree-shake (remove) any debugging code within the Sentry SDK.
133
-
* Note that the success of this depends on tree shaking being enabled in your build tooling.
134
-
*
135
-
* Setting this option to `true` will disable features like the SDK's `debug` option.
136
-
*/
137
-
excludeDebugStatements?: boolean;
138
-
139
-
/**
140
-
* If set to true, the plugin will try to tree-shake tracing statements out.
141
-
* Note that the success of this depends on tree shaking generally being enabled in your build.
142
-
* Attention: DO NOT enable this when you're using any performance monitoring-related SDK features (e.g. Sentry.startSpan()).
143
-
*/
144
-
excludeTracing?: boolean;
145
-
146
-
/**
147
-
* If set to `true`, the plugin will attempt to tree-shake (remove) code related to the Sentry SDK's Session Replay Shadow DOM recording functionality.
148
-
* Note that the success of this depends on tree shaking being enabled in your build tooling.
149
148
*
150
-
* This option is safe to be used when you do not want to capture any Shadow DOM activity via Sentry Session Replay.
149
+
* @deprecated Use `unstable_sentryVitePluginOptions` instead of `sourceMapsUploadOptions.unstable_sentryVitePluginOptions`
151
150
*/
152
-
excludeReplayShadowDom?: boolean;
153
-
154
-
/**
155
-
* If set to `true`, the plugin will attempt to tree-shake (remove) code related to the Sentry SDK's Session Replay `iframe` recording functionality.
156
-
* Note that the success of this depends on tree shaking being enabled in your build tooling.
157
-
*
158
-
* You can safely do this when you do not want to capture any `iframe` activity via Sentry Session Replay.
159
-
*/
160
-
excludeReplayIframe?: boolean;
161
-
162
-
/**
163
-
* If set to `true`, the plugin will attempt to tree-shake (remove) code related to the Sentry SDK's Session Replay's Compression Web Worker.
164
-
* Note that the success of this depends on tree shaking being enabled in your build tooling.
165
-
*
166
-
* **Notice:** You should only do use this option if you manually host a compression worker and configure it in your Sentry Session Replay integration config via the `workerUrl` option.
* If this flag is `true`, the Sentry plugins will automatically upload source maps to Sentry.
189
+
* @default true`.
190
+
*/
191
+
autoUploadSourceMaps?: boolean;
192
+
/**
193
+
* Options related to source maps upload to Sentry
194
+
*
195
+
* @deprecated This option was deprecated as it adds unnecessary nesting. Put the options one level higher to the root-level of the Sentry Svelte plugin options.
0 commit comments