diff --git a/src/platform-includes/replay/privacy-configuration/javascript.mdx b/src/platform-includes/replay/privacy-configuration/javascript.mdx index 30cfed0951e39..c355ade7d4ea0 100644 --- a/src/platform-includes/replay/privacy-configuration/javascript.mdx +++ b/src/platform-includes/replay/privacy-configuration/javascript.mdx @@ -1,4 +1,14 @@ -The following options can be configured as options to the integration, in `new Replay({})`: +If you're working on a static website that's free of personal identifiable or other type of private data, +you can opt out of the default text masking and image blocking by configuring the `maskAllText` and `blockAllMedia` configuration options respectively: + +```javascript +new Sentry.Replay({ + maskAllText: false, + blockAllMedia: false, +}); +``` + +The following is a complete list of options that can be used in `new Replay({})`: | key | type | default | description | | ------------- | -------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |