Loader Script

Learn about the Sentry JavaScript Loader Script

The Loader Script is the easiest way to initialize the Sentry SDK. The Loader Script also automatically keeps your Sentry SDK up to date and offers configuration for different Sentry features.

To use the loader, go in the Sentry UI to Settings > Projects > (select project) > SDK Setup > Loader Script. Copy the script tag and include it as the first script on your page. By including it first, you allow it to catch and buffer events from any subsequent scripts, while still ensuring the full SDK doesn't load until after everything else has run.

Copied
<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

By default, Tracing and Session Replay are disabled.

To have correct stack traces for minified asset files when using the Loader Script, you will have to either host your Source Maps publicly or upload them to Sentry.

The loader has a few configuration options:

  • What version of the SDK to load
  • Using Tracing
  • Using Session Replay
  • Enabling SDK debugging

To configure the version, use the dropdown in the "Loader Script" settings, directly beneath the script tag you copied earlier.

Note that because of caching, it can take a few minutes for version changes made here to take effect.

If you only use the Loader for errors, the loader won't load the full SDK until triggered by one of the following:

  • an unhandled error
  • an unhandled promise rejection
  • a call to Sentry.captureException
  • a call to Sentry.captureMessage
  • a call to Sentry.captureEvent

Once one of those occurs, the loader will buffer that event and immediately request the full SDK from our CDN. Any events that occur between that request being made and the completion of SDK initialization will also be buffered, and all buffered events will be sent to Sentry once the SDK is fully initialized.

Alternatively, you can set the loader to request the full SDK earlier: still as part of page load, but after all of the other JavaScript on the page has run. (In other words, in a subsequent event loop.) To do this, include data-lazy="no" in your script tag.

Copied
<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
  data-lazy="no"
></script>

Finally, if you want to control the timing yourself, you can call Sentry.forceLoad(). You can do this as early as immediately after the loader runs (which has the same effect as setting data-lazy="no") and as late as the first unhandled error, unhandled promise rejection, or call to Sentry.captureMessage or Sentry.captureEvent (which has the same effect as not calling it at all). Note that you can't delay loading past one of the aforementioned triggering events.

If Tracing and/or Session Replay is enabled, the SDK will immediately fetch and initialize the bundle to make sure it can capture transactions and/or replays once the page loads.

While the Loader Script will work out of the box without any configuration in your application, you can still configure the SDK according to your needs.

For Tracing, the SDK will be initialized with tracesSampleRate: 1 by default. This means that the SDK will capture all traces.

For Session Replay, the defaults are replaysSessionSampleRate: 0.1 and replaysOnErrorSampleRate: 1. This means Replays will be captured for 10% of all normal sessions and for all sessions with an error.

You can configure the release by adding the following to your page:

Copied
<script>
  window.SENTRY_RELEASE = {
    id: "...",
  };
</script>

The loader script always includes a call to Sentry.init with a default configuration, including your DSN. If you want to configure your SDK beyond that, you can configure a custom init call by defining a window.sentryOnLoad function. Whatever is defined inside of this function will always be called first, before any other SDK method is called.

Be sure to define this function before you add the loader script, to ensure it can be called at the right time:

Copied
<script>
  // Configure sentryOnLoad before adding the Loader Script
  window.sentryOnLoad = function () {
    Sentry.init({
      // add custom config here
    });
  };
</script>

<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

Inside of the window.sentryOnLoad function, you can configure a custom Sentry.init() call. You can configure your SDK exactly the way you would if you were using the CDN, with one difference: your Sentry.init() call doesn't need to include your DSN, since it's already been set. Inside of this function, the full Sentry SDK is guaranteed to be loaded & available.

Copied
<script>
  // Configure sentryOnLoad before adding the Loader Script
  window.sentryOnLoad = function () {
    Sentry.init({
      release: " ... ",
      environment: " ... "
    });
    Sentry.setTag(...);
    // etc.
  };
</script>

By default, the loader will make sure you can call these functions directly on Sentry at any time, even if the SDK is not yet loaded:

  • Sentry.captureException()
  • Sentry.captureMessage()
  • Sentry.captureEvent()
  • Sentry.addBreadcrumb()
  • Sentry.withScope()
  • Sentry.showReportDialog()

If you want to call any other method when using the Loader, you have to guard it with Sentry.onLoad(). Any callback given to onLoad() will be called either immediately (if the SDK is already loaded), or later once the SDK has been loaded:

Copied
<script>
  window.sentryOnLoad = function () {
    Sentry.init({
      // ...
    });
  };
</script>

<script
  src="https://js.sentry-cdn.com/examplePublicKey.min.js"
  crossorigin="anonymous"
></script>

<script>
  // Guard against window.Sentry not being available, e.g. due to Ad-blockers
  window.Sentry &&
    Sentry.onLoad(function () {
      // Inside of this callback,
      // we guarantee that `Sentry` is fully loaded and all APIs are available
      const client = Sentry.getClient();
      // do something custom here
    });
</script>

When using the Loader Script with just errors, the script injects the SDK asynchronously. This means that only unhandled errors and unhandled promise rejections will be caught and buffered before the SDK is fully loaded. Specifically, capturing breadcrumb data will not be available until the SDK is fully loaded and initialized. To reduce the amount of time these features are unavailable, set data-lazy="no" or call forceLoad() as described above.

If you want to understand the inner workings of the loader itself, you can read the documented source code in all its glory over at the Sentry repository.

Because the loader script injects the actual SDK asynchronously to keep your pageload performance high, the SDK's tracing functionality is only available once the SDK is loaded and initialized. This means that if you e.g. have fetch calls right at the beginning of your application, they might not be traced. If this is a critical issue for you, you have two options to ensure that all your fetch calls are traced:

  • Initialize the SDK in window.sentryOnLoad as described in Custom Configuration. Then make your fetch call in the Sentry.onload callback.
    Example
    Copied
    <script>
      window.sentryOnLoad = function () {
        Sentry.init({
          // ...
        });
      };
    </script>
    
    <script
      src="https://js.sentry-cdn.com/examplePublicKey.min.js"
      crossorigin="anonymous"
    ></script>
    
    <script>
      Sentry.onLoad(function () {
        fetch("/api/users");
      });
    </script>
    
  • Use the CDN bundles instead of the Loader Script. This will ensure that the SDK is loaded synchronously, and that all your fetch calls are traced.

Sentry supports loading the JavaScript SDK from a CDN. Generally we suggest using our Loader instead. If you must use a CDN, see Available Bundles below.

To use all Sentry features, including error monitoring, tracing, Session Replay, and User Feedback, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/10.8.0/bundle.tracing.replay.feedback.min.js"
  integrity="sha384-Yy2UXIFrWRfe56w1BuJ8/pgltHwWyYP4Q7dYKueJ/c6RG8B/bPJmGv+TBTQSuTSv"
  crossorigin="anonymous"
></script>

To use Sentry for error and tracing, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/10.8.0/bundle.tracing.min.js"
  integrity="sha384-TR8N680qOm0pCmrHg2oG0fjpZYcpLanuLrMZck1DTR0NnaJjnqAPuCPI7pMJRmFp"
  crossorigin="anonymous"
></script>

To use Sentry for error and tracing, as well as for Session Replay, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/10.8.0/bundle.tracing.replay.min.js"
  integrity="sha384-o9UXGQbKb76G6UNZasN50E5922I6aQx9CSzbN02knpjeqhcgl2Vi8SAlCUEqIa+0"
  crossorigin="anonymous"
></script>

To use Sentry for error monitoring, as well as for Session Replay, but not for tracing, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/10.8.0/bundle.replay.min.js"
  integrity="sha384-1GmBZYPjprz8SnHRHngR1vD+kITPuIuD2nPPHl66G7GTcwvrO18vK9IR5BsYRung"
  crossorigin="anonymous"
></script>

If you only use Sentry for error monitoring, you can use the following bundle:

Copied
<script
  src="https://browser.sentry-cdn.com/10.8.0/bundle.min.js"
  integrity="sha384-OeXjkPMDAnxIgoEIBDnXWKhce+ctYZHJjn+VcfoEzUIV/YPFgf5sPIMT6Fr68nfq"
  crossorigin="anonymous"
></script>

Once you've included the Sentry SDK bundle in your page, you can use Sentry in your own bundle:

Copied
Sentry.init({
  dsn: "https://examplePublicKey@o0.ingest.sentry.io/0
example-org / example-project
"
,
// this assumes your build process replaces `process.env.npm_package_version` with a value release: "my-project-name@" + process.env.npm_package_version, integrations: [ // If you use a bundle with tracing enabled, add the BrowserTracing integration Sentry.browserTracingIntegration(), // If you use a bundle with session replay enabled, add the Replay integration Sentry.replayIntegration(), ], // We recommend adjusting this value in production, or using tracesSampler // for finer control tracesSampleRate: 1.0, // Set `tracePropagationTargets` to control for which URLs distributed tracing should be enabled tracePropagationTargets: ["localhost", /^https:\/\/yourserver\.io\/api/], });

Our CDN hosts a variety of bundles:

  • bundle.<modifiers>.js is @sentry/browser with error monitoring only
  • bundle.tracing.<modifiers>.js is @sentry/browser with error and tracing
  • bundle.replay.<modifiers>.js is @sentry/browser with error and session replay
  • bundle.feedback.<modifiers>.js is @sentry/browser with error and user feedback
  • bundle.tracing.replay.<modifiers>.js is @sentry/browser with error, tracing and session replay
  • bundle.tracing.replay.feedback.<modifiers>.js is @sentry/browser with error, tracing, session replay and user feedback

Additionally, each of the integrations in @sentry/integrations is available as a bundle named <integration-name>.<modifiers>.js.

Since v8 of the SDK, the bundles are ES6 by default. If you need ES5 support, make sure to add a polyfill for ES5 features yourself. Alternatively, you can use the v7 bundles and add the .es5 modifier.

Each version has three bundle varieties:

  • minified (.min)
  • unminified (no .min), includes debug logging
  • minified with debug logging (.debug.min)

Bundles that include debug logging output more detailed log messages, which can be helpful for debugging problems. Make sure to enable debug to see debug messages in the console. Unminified and debug logging bundles have a greater bundle size than minified ones.

For example:

  • bundle.js is @sentry/browser, compiled to ES6 but not minified, with debug logging included (as it is for all unminified bundles)
  • bundle.tracing.debug.min.js is @sentry/browser with tracing enabled, minified, with sdk debug logging included
FileIntegrity Checksum
browserprofiling.debug.min.jssha384-ioxpIUnvTO7KlADJqlvPRDebLHJgTZxVtQ1f5TZYcKjf+/HMz8Gtn4gu0jMl+1YD
browserprofiling.jssha384-90N2p8ozTwb/PjbmmT7IpWvSFw4f1rHNAQHiPkTzhQ8Ab3rWHw1dNw0Q7JcPKY2G
browserprofiling.min.jssha384-CJd1ERyI2BqRMyORlLivAu16ppycJ/twNAJsTK4aAN58hupE6kELB8Bls+UBBU++
bundle.debug.min.jssha384-Y2m8Sxg9MOiA+qu68AedGORmBIGZKuhRLvSJ2fRN76vChDorIEsB7yKFezDFB/sU
bundle.feedback.debug.min.jssha384-qGbQLGKGXwNmiQa5rDcbd83haHPCoqNRXgWpeJYVc59qafNJ0DzbEwJ2p4ogA2En
bundle.feedback.jssha384-4vnuQMBthMhDM3oqK1qvYkl3Csn5W1dILQm68F0APMeEEZ4x9tawYL10aJg4kEYZ
bundle.feedback.min.jssha384-F9wDup/vTwnX1rBEyOmfWJ3DaUGccIcxzbxV93YsetGPEE5mvcRBkwc/4moYGPNR
bundle.jssha384-3AEoO5K9QtIoIIOEO0VjvhUObGj0JlEIlh0yq2olWjckAsvX1rFBRHK1dYn4gw6G
bundle.min.jssha384-wd4IQyhrIZmngkvZARAY12r1a2T53k1WbRIljCIrP4bRU4GCuC0UXm5D7MsSSRJo
bundle.replay.debug.min.jssha384-PGZ/J9fqHIa8dGZunb7mWmXaJp0mtHPQ1SWzNf5ogfM+3DBVVX4Y/H9s046RBrO7
bundle.replay.feedback.debug.min.jssha384-DDLsOJOIboKSaZeQvgB1n+E3hJ6NcpEh9qRooOeOan1E3M1P25Dw71D+wTcTHCNJ
bundle.replay.feedback.jssha384-V7vXPfYA5+s6sijbG+udMw1RSSimkKbctBEuvEZTUjAqMUFBMQHxygP/OpJldqkF
bundle.replay.feedback.min.jssha384-9ORSXKXKm0oqxLU4wbZcTRaDPAlzgi5ap0R5NS0umlue1C3nnFETBumjrqVgpJhY
bundle.replay.jssha384-aPYYN7cSgJSZlNeiGeaBShpNXuNYwIBpCY5m+tQxFjHFvQfiTLy/JKS6jmAdXTuw
bundle.replay.min.jssha384-5p8o9s7MYfBYx72GL+3+1++SFOZl7LW/krfiVGIPapDANA+jCf0MHSGA5zjBGavo
bundle.tracing.debug.min.jssha384-vAKes6vJmAQwObJElk9FIoIK8udPOYAyXrk+/HLnEI30CPsPpdKIcgAzbhg3w2k4
bundle.tracing.jssha384-ScN7GvJPxcPfDnrcAUhK6bFeool2TZejL9Qkj9ISl7V3X2VAH5OtWwiGRYa65MFv
bundle.tracing.min.jssha384-GkU7zTgqS2CTo0QmxEiOsIQJq68+tkFqUhuqkW+4j43VSUgFywx4aaucNqxBE0AD
bundle.tracing.replay.debug.min.jssha384-ghU3Z57bcJrAGDSNHcaXuJ8ymCIgvGFJ1qejiuTKBvv+5XmO3tz8dH0MvUjOzaqi
bundle.tracing.replay.feedback.debug.min.jssha384-cDd4d8esQMJr2KeZ5BGL3E9K/4cvsrD/GBGRwjz6o4q62SjDHqMp3XhnrlI0EU6i
bundle.tracing.replay.feedback.jssha384-iDLMMd+vICqldUd5frk+Y0/MPMYIn55dIPEYKo2Na63iiA4TnHGvPpcmURGXSFVO
bundle.tracing.replay.feedback.min.jssha384-WJm5RN4qh2vpXs7pRA3mnewZE8SYYikfjJrjheyEgVT9ZxwBSm6ChR64K7grN08F
bundle.tracing.replay.jssha384-K0KRf6CnQhvRig2nk73GWTD/uXPFRLsk9Nxahis7+z3myBu7EoS1iIrCZ4jBttfE
bundle.tracing.replay.min.jssha384-s6lGQI41v0QtwR359TZuLZIHEnkHqnXm+JMo40YMv4PSKi5zfWU1yLDRRZ+lemhk
captureconsole.debug.min.jssha384-PjALU96HuMKlEcN4n0z0BKJ8y7vdeAOHrSU+KzDhdjR0x8/CnSPvrX5jzCZ0w/+G
captureconsole.jssha384-gRxB9XfXaBIYaI3dAHqWl3maRlaiHxrZFTWhFxFOUgkjZdPqNh7oHavgeyntC7hB
captureconsole.min.jssha384-Sd4m1XCfdPwXEF6Jg4RhRNa/Z9HLfpeqyDE8LrtpxSg93Fuk9R8EN/iPAGbYpEWS
contextlines.debug.min.jssha384-1GUKSgN06rTFpec1ePx4WJUF3VG+hWeYK3d8g/PFijlzA95X/UUifZXOY+P2xZUl
contextlines.jssha384-Lu695MqPiQ/DMkDCgbDJH50iXegpIUEC0g6qcD6rbiw8ohCCCinYwzOPRxcAthM9
contextlines.min.jssha384-P/eVtyWPwlQp2M4mthk0TeHJpICz3hY1xbHJGojJv7hrZ6NCKorxNV/9cW6eYUvU
dedupe.debug.min.jssha384-hVelz6PNUgkWstRiw8WxrCrTFLq2NohBfmcVFE/v4JooN+jb8NX04Xd6ljlXk9z9
dedupe.jssha384-5fu1y+u70D4Z09ytdPwvXW/x5o9zwcLHafbDkciOwKoBIZTm7tDcq7PNPQIkEpfj
dedupe.min.jssha384-0H0MmAffgx4QT8qO+UO9x9z9MrTV/f8LiSOs4WAINCWIfKpa4sFnwe5WZF7Db/8S
extraerrordata.debug.min.jssha384-4u/kSzYNy1ZoxlwyAYxSaK4PtTMxklqvzmSp/h/Bf6LF7ihRzeJi+nFTJFsmIo00
extraerrordata.jssha384-YbuOo6Qh8Z1iZmQFTQrkelN4+0YLxLDMMN42BdUF7cwnmvzT7c6xbWwA9wjoMrFV
extraerrordata.min.jssha384-6Ngdp+jbaAz1ZFJOXgKZjh5tdapoqGHrsLrt79zAu1kFrFxmvG+i+bWBzypujS9i
feedback-modal.debug.min.jssha384-thH/wCjbAt5fVGfFb4WYi+jC8b2p1p86biQHK3quzRd6tzLqJU7qEnkvNISWKjbi
feedback-modal.jssha384-NEE69izkINmN4hIpp0ZboefSxAmHZirDf1vYP+GJdlNBBAScOqh3yZDCbQabh7up
feedback-modal.min.jssha384-jThgXHs7vpgLzbpjluo1ODVMeDsw59DVOPxbxjQucLr6xeMQAu1yzXKvG+0Dy6/9
feedback-screenshot.debug.min.jssha384-q4TNn0UBzBToQSov9TuFr/kJ5hOD2ddMssRV9R9hApvHzs4urwuXNELE8RXzzj85
feedback-screenshot.jssha384-YlYGivqg0ZnZw1D+EScFuOrhJfDTX9mZg4DAkRjpjqmBfPUxZxthewCNIRc/yx1O
feedback-screenshot.min.jssha384-fuPQdtYe4W4jocvVhyGNX6dOs3TkMNLj/XFiw+RRPiMh2CIitwkLNYltCV6I8gam
feedback.debug.min.jssha384-cXnF/IXzpcj/DhSfsjxgFGyssdOdGptMZy7c4p8PCMwxu/HEU3URJrugcVxX7MRy
feedback.jssha384-Xcqf38iCH8oVBtCYPQWiKc2TipLTX7n+mNVH6SOxImL5pBD+9TfUYG+yzQxN2pDV
feedback.min.jssha384-iRQRWHkR2iW/fgCHl3t4E+JoINYKR+WyNrWtSBKXd66XEBt2OR2fJsF7palss26y
graphqlclient.debug.min.jssha384-6xe8evq5bVs1SMoEbyxp46R81MkEspB7cgL0WLEBwwwjerX1YXWsrAfKnZw8mnRS
graphqlclient.jssha384-kZc6OKdPUs7FESUyshsPIlD9qxMvRCfZPKE/mpd+CjQY5a0sWIpHbBpyHzpY8D3i
graphqlclient.min.jssha384-wYA8E1EclsqduaSdAE7KKiXFKQSiivWpnXKww7SEqocwommNf97hCX7EfkE0xazr
httpclient.debug.min.jssha384-70dE22Py5FrYW0DXN6E0ntlKtKESWy5+ZKqM1mYNq9dMAp7mO71ndVEw0yZpJfHN
httpclient.jssha384-HODUObcKg19XiaI9ER8hDFcJgalsJbHWdyW7Q5oXSkneb6c8zJ+MROMzoo2yzr22
httpclient.min.jssha384-JRvLqaXcrJr43aci8soC6XqWUsFwBxyfOkORERCLH1GFQ7qPq4p84IL4chRHR/CW
modulemetadata.debug.min.jssha384-RnM8uWhWsK0AG8O4I6osODbNAIttLduNcE/hfOOnDAed0+LKENnCXzG+FWARqb5N
modulemetadata.jssha384-Ab7/avcyZYQaGXACdAxFv04+GoWNtB9XRmeHS5GhW3ED2LuqG/MMMS0026AIb+fw
modulemetadata.min.jssha384-n7rCcttKzlZ6/lwK2T4Xb+OQNQQW1TFmVZXbSWULtMx6ku096KpRgEfQAVkRd6En
multiplexedtransport.debug.min.jssha384-MSJpCV5cf8c9GZxo9D/b2FGyGNUQhyXIc3eb+f9dbmILoPu6upELJr469DIZrhJD
multiplexedtransport.jssha384-+5uDCakYvpqCkDAjbrqTctbg/+iPObpJ6PPqdXgzZpDXaCO39RthnYdRNGFp/pwu
multiplexedtransport.min.jssha384-IbiyETtN29TQTqfmDnvyO2xoCWzAwF4EjJucS9xz0rGDwQ6E33vmjvNF8UgDDAzA
replay-canvas.debug.min.jssha384-gg7wpVUc/oPfLFJMt2yDvDqgsEM0WxSXLEz4jNzqAXgSY1UeACIKiG0nevIpO7x7
replay-canvas.jssha384-berMY4OjN4wEasV6+f5sV1SpDnmgw5bCRM1B0EnrtZc8R4RlFCoSnWqRvnLbScfm
replay-canvas.min.jssha384-GB/V5/Bj5Ypba2QJCzz5hoyUvHfLuvESnWnWpuwhsoP94vfOuVfOIHxW4BMrqkXw
replay.debug.min.jssha384-LlWHPW+ZFPRxo8r5MayUnz0vkFMCPwiEzdA7I/fY3CRibWTqmAoxxphDxcjVU/SP
replay.jssha384-YGhaVT1Hyr7WC30axYlzALmtmLTEbp6QiggdDvDHG4a6e93U+wxHjARzF2hkcrpL
replay.min.jssha384-+lRbEdCKdOEU/TWWig/cbo4tloLmrvgHsEnek7j0q9EP+ACZ/SJWY3omCIQFPAEK
reportingobserver.debug.min.jssha384-yIeLnj6remcTCeJEogk0DNeD+lTh5oj7E7oirZDX5NdOcvdCZAVOqyohD2hhDWP5
reportingobserver.jssha384-jyWGWc3hL+nL00ACUBKNwH2KZwsnCdMho1wbQ60SiliSNOeWO5qYs9Yzxtn8f27r
reportingobserver.min.jssha384-P+gz28ilGDM7Qu4jhljkrOL0rmU+BEicA5OFFND3qM/toOtpaorx3Y1xuU2ivf71
rewriteframes.debug.min.jssha384-hxxc4eG1Cc4QVHg/FegSFgjBiANcvs35VnPu9MdMPsxWTBgY86ARqvsRgqcaLLvd
rewriteframes.jssha384-cGRIePmNW9LrU+enJ50ZDIx0kHdIOliVVqogHatywFp2Pu/YsFzixUOFzlPj8giQ
rewriteframes.min.jssha384-qlNVVUVDkiSqgixr6WJTMSTO47bgzYcK0X6CvjWf+VpqK/u6+7yAwdkAFVbAdS5O
spotlight.debug.min.jssha384-SnNmJT8yn7C+BHonqbNA4NgTB7Zs0O9tGzl4i6PDB+FfM+iLQ3I20S+amGvtDh+o
spotlight.jssha384-TkGrsp6AgbbfzSJZIKQGeCP6fAfFLAGyfxrogkasIggloy8eRj/lwrnD+pAc55+4
spotlight.min.jssha384-F0bMCcnNiweqH/aQbikVPVH90fkCWQl0R5WVPcCnrsJ+PTaww/rO6QSLG2Gj+zs7

To find the integrity hashes for older SDK versions, you can view our SDK release registry for the Browser SDK here.

If you use the defer script attribute, we strongly recommend that you place the script tag for the browser SDK first and mark all of your other scripts with defer (but not async). This will guarantee that that the Sentry SDK is executed before any of the others.

Without doing this you will find that it's possible for errors to occur before Sentry is loaded, which means you'll be flying blind to those issues.

If you have a Content Security Policy (CSP) set up on your site, you will need to add the script-src of wherever you're loading the SDK from, and the origin of your DSN. For example:

  • script-src: https://browser.sentry-cdn.com https://js.sentry-cdn.com
  • connect-src: *.sentry.io
Was this helpful?
Help improve this content
Our documentation is open source and available on GitHub. Your contributions are welcome, whether fixing a typo (drat!) or suggesting an update ("yeah, this would be better").