Created
December 16, 2017 00:01
-
-
Save ndmanvar/216c8d77ab96cc66ac05fa81de9fcdc2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://cdn.ravenjs.com/3.20.1/raven.min.js" crossorigin="anonymous"></script> | |
<script> | |
Raven.config('https://<SENTRY_PUBLIC_DSN>@sentry.io/<SENTRY_PROJECT_ID>', { | |
dataCallback: function(data) { | |
// scrub sensitive information from data. returned mutated data will get sent as request payload | |
return data; | |
} | |
}).install(); | |
</script> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment