Context: I am implementing Mixpanel Session Replay across multiple web products. All products use the same Mixpanel Project Token, but each application runs its own mixpanel.init() function.
The Problem: Currently, when a user navigates from one product to another, the Session Replay recording stops, and a new recording begins. I want to maintain a single, continuous session recording across these switches.
My Hypothesis: I suspect the issue is related to the URL change or how the session cookies are being shared between the applications.
Question: How do I configure the Mixpanel SDK to bridge the session? Specifically, how should I handle distinct_id and cookie cross-domain configuration to ensure continuity?