diff --git a/packages/replay-internal/src/integration.ts b/packages/replay-internal/src/integration.ts index c2a9206feb0d..3b2f543c7037 100644 --- a/packages/replay-internal/src/integration.ts +++ b/packages/replay-internal/src/integration.ts @@ -150,6 +150,8 @@ export class Replay implements Integration { // this can happen if the error is frozen or does not allow mutation for other reasons } }, + + recordCrossOriginIframes: Boolean(_experiments.recordCrossOriginIframes), }; this._initialOptions = { diff --git a/packages/replay-internal/src/types/replay.ts b/packages/replay-internal/src/types/replay.ts index 280db17db57a..6be75e0f83aa 100644 --- a/packages/replay-internal/src/types/replay.ts +++ b/packages/replay-internal/src/types/replay.ts @@ -230,6 +230,7 @@ export interface ReplayPluginOptions extends ReplayNetworkOptions { traceInternals: boolean; continuousCheckout: number; autoFlushOnFeedback: boolean; + recordCrossOriginIframes: boolean; }>; }