Hi, team. I’m using amplitude browser sdk via AmpliWrapper. To disable tracking in non-production environment, I set disabled=true at initializing ampli client. However, default events are sent to server. So I needed to configure both client.configuration.defaultTracking=false and disabled=true. This looks not natural to me.
ampli.load({<br /> client: {<br /> apiKey: API_KEY,<br /> configuration: {<br /> defaultTracking: false,<br /> },<br /> },<br /> disabled: true,<br /> });