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
Copy file name to clipboardExpand all lines: src/platform-includes/replay/privacy-configuration/javascript.mdx
+11-1Lines changed: 11 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,14 @@
1
-
The following options can be configured as options to the integration, in `new Replay({})`:
1
+
If you're working on a static website that's free of personal identifiable or other type of private data,
2
+
you can opt out of the default text masking and image blocking by configuring the `maskAllText` and `blockAllMedia` configuration options respectively:
3
+
4
+
```javascript
5
+
newSentry.Replay({
6
+
maskAllText:false,
7
+
blockAllMedia:false,
8
+
});
9
+
```
10
+
11
+
The following is a complete list of options that can be used in `new Replay({})`:
0 commit comments