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-lBxP+fUzNx33NT7T3q1lCFNhMBKjm3l2jID2H570zjLTcVH/cA2+yi3oXW19XmLZ
browserprofiling.jssha384-Me391Hi80sQ+zvjTPbLCWp1QM73wpLGlRL91M7b/VBdxJdKSR7RQNailL56QzjBZ
browserprofiling.min.jssha384-6me09sKja7JOK83sAROHg43YkCtZjZGHl3y6kue0TTdXR/WIZcY64LqeMPg1Envh
bundle.debug.min.jssha384-h4lTkoZr4LftJeAfPeUSDMSrceMWG76fEUg82T0Be6HKoarj6r9P5pMDpN/f/51N
bundle.feedback.debug.min.jssha384-YhUjXIaenNyVKATcOo+4J0OWB+jF8eI5yeaD+eArXuaRkI19UPYzLN1gb0rGpwVH
bundle.feedback.jssha384-0HT/kGDwbskYvnJUSWJOPg7BKak2yn5151bYXW5OuRfzdnvKxl3yEdrBOHszW7un
bundle.feedback.min.jssha384-7C6HGjPFGHIf2aeBhCU6UVbZUJyUulee34AFd6r9Y4SW0cv00hMKXPy6ordSzN6x
bundle.jssha384-OTfoWG71PNOpbv4i/ufXMl9ToMSzJp4BA+zi1Bm0+qth/44FFmyRAwnpbwc6fwjJ
bundle.min.jssha384-Lap3YoXP44X2Gi83/+Olb2c8JJp+2gYNk8DTSo2I91apZv8nxjMOJ1yF8iujbG42
bundle.replay.debug.min.jssha384-nbfejPOAPrY/9l0O8UvnwgxUk31cQ2Fhar/Cr83bFbEql/EdVaGPSYuDSudnJelT
bundle.replay.feedback.debug.min.jssha384-RHgbhe6W1dRmgMZyx0kxUezHpk1N2gub9Wzxdy29r7upAHZLQw6X/+FaTMArJssU
bundle.replay.feedback.jssha384-zvXpTOMtXpoSj0FSxWiqF6oo+7ijlybM+fAglkze2Hhm7M+wU52ROETQgkhZLX6I
bundle.replay.feedback.min.jssha384-JgcMXTbAhESZdnzYAGPFVl1Geh9Pn/V/+ES4n5TZCKStFAz4wXoXsZbUjU6NoJMa
bundle.replay.jssha384-cfP04ul09jb+9hN9LWUmocuoPlo/sPxsbaGZ7f8/2ovJCptiKOObPAZ5awqI4vzP
bundle.replay.min.jssha384-NhAE9K5Ho/dqt219bIwP5cKRXdcaPPrabaMrfoAQg1GxVr0iChsYmk+is6ru2qIi
bundle.tracing.debug.min.jssha384-UkUcmkY13jU7sdvg+r0XtXnd2h4qsAOJUhVDghx3a83fgZaGnagHnys+WofKfq9S
bundle.tracing.jssha384-ONydPhOiS93lip/Y4XMmPB8DONFSRm8xq2lumSuq0wRmaTAmtyL8i72RLt+qd/+o
bundle.tracing.min.jssha384-x5S2v4/APYUlkFCQfft/UO44vNzaZvqGpqVNEqVpJX515JU8R6eRNXeAekPcoHuB
bundle.tracing.replay.debug.min.jssha384-7kYSU3XM4/48km79O8CUvTL0N7AmmqdsgOQ5leZHtiie7Tf9nReDTPgaCuVIYmvx
bundle.tracing.replay.feedback.debug.min.jssha384-fRO2BHXl3YdtYeh6/6C8oAlvdrWwN41/GZhWFUY55/RaSad6I9nvfXwas6vpQIdj
bundle.tracing.replay.feedback.jssha384-0tgOgB3c94ggmKX/A2Iat7KjC6IRvvV0f36GxcVnRPrH9nkVxYPp70bLsc6HsQUR
bundle.tracing.replay.feedback.min.jssha384-eC8pqKuREzjmYIOojOjht36mVxSbp1OtP9CNMim7JG5uf1F+T8m0X4pdVpWV572g
bundle.tracing.replay.jssha384-GcQBYpPa4QpIebugCkomIIP0ltO3vXHDQrqjl7Nt3YqhHyjXOJlX8mwMPM9eeSq7
bundle.tracing.replay.min.jssha384-Zrb8v2UiwbHCz22TImnPcA6R6uzpz4O1KpH68fp37mLvqX887IdysalajhFLHuz4
captureconsole.debug.min.jssha384-I+pLldy+pS73gHGtoGLbB8++y0g2B8m6YC5wTe5chLv63ddp8aFka60Bcfx6KtvU
captureconsole.jssha384-2yNNHjZi0uYxoh+Aga0hOuvZiVW+v+d4EWtmxkbDp94XfZoppNDkkLgcKbx56zyE
captureconsole.min.jssha384-ol6AcY5IBwnW2ZzP+10+vGkpNMIAkc5r7PzAtYlUINv2K5CKtHgwwmuWt7/Xncm4
contextlines.debug.min.jssha384-Qw4pDGJTUk4Kvf52f/5mrCciQHUT3AS95dKKQS7PXL6JyyA40gFdi5r362VrRuFH
contextlines.jssha384-Hdifq1YDic9Sv+tk4vOz6NDIS80HM8+8lbqSLFjS5QWso+beN8iscuJmnSrKzQbv
contextlines.min.jssha384-njMfrh0k4bx/L8kE1FWLY5QVEwQo1v3MzZzXdOr2AEW7xeVd7qOBQtScDjLC3Rrk
dedupe.debug.min.jssha384-Ue+b9nr0n051Yi8R8stg+TxQvd8vID7W/WiLKdBsFKgKkxDVcEbOG6Bn6beLRB7L
dedupe.jssha384-E2kte5TC/Lk2d1ZZO+SgSXs48V/Ekjqr3hfaFutCNOsTEkQO7oqU8hNuKFb0ORMk
dedupe.min.jssha384-AXz2UxE6Adn4lWTC24f4Zg+n3Qt0hjRENuWL+HH+0oOQqX15GNq8qO+muBRz/QXx
extraerrordata.debug.min.jssha384-PeHKZLxlqlEheSN4VbPm9fn6UC6asGe26PaOdFHFG+XCEmYdGfblH6Y5Pur1gU2m
extraerrordata.jssha384-TzSjYZEjhxaixp8mqQxOqqBf/lERMTOVayYHeJPXQcdLMozzf0koghMQJRL8bMYz
extraerrordata.min.jssha384-V6PFaD9kBM2ml9pVoOuNi7wD+5y8qlAcpJAAtK6yyHZTJ43v8EE6nq4ixi4kS7ZT
feedback-modal.debug.min.jssha384-AHHV+lAVcqaZEoz5ygh/H2e7PxX2rgNlH41cviBK1Og6XPOsIj7Shag0ICkcpuWf
feedback-modal.jssha384-86LEo7hye/lGFYEqPhIuRwSGZ/2we6ouh6wJTNz09td0PesYMuqOkyyEz7hl7fYe
feedback-modal.min.jssha384-3llHjhApyheNAtK3sX4Q6dtl/UjbkAj0C57Z+8tRHturs51eWbakGZk1N250a9M8
feedback-screenshot.debug.min.jssha384-9XF4gUlrf5jdcakAEXI3Fc/TGSD3md1KccRMaYxakT2aaniymnEzIf/Oe9LnwiZY
feedback-screenshot.jssha384-eB5OL2Dx+lKzeIMLcT6yDl5ha3f9f1ZJzO835oDcJALGw4e2XFxkmjyhw9vUpVTX
feedback-screenshot.min.jssha384-832JpSoRGEf+ksBBIFg37GvY3DZRTY6aRrB0jIFe+T7X9kVSCZG+etHgp4/K5135
feedback.debug.min.jssha384-sCF4yyuNL1qHxWpLVH6V3RBulOXN96QIq22OBbDwrH8aaYYYm/mekCPW+m0CmIwA
feedback.jssha384-yYzHljNa8NS1Z6Kg7Y+hNHIZHu5LcvbPY87aQVjGRTNuAewMYGTf/RDZyT9GiYKM
feedback.min.jssha384-2pOOsqX7p0yyOQkRljsdEUXW+keDtVMUmk0DT/QlHLphr/lzloLDnDdA7scE/PE0
graphqlclient.debug.min.jssha384-2h9/11g7O8RXByBPLpL6YEuoQzEWOO2+Yfq2IW1hFnxudEhVYn50CcJuBSIxQTAX
graphqlclient.jssha384-lderDoZU/AFp7AS4ZIr2Hi8vABfj4KThlo/bf4T+J59VWc2XWGQi/MTe1ZC2iIMF
graphqlclient.min.jssha384-Tv9cxbg0nuztWXV+DPNcykGEiMiGH88hWNJfMGgkrvR5X8qPM+hpbv5E9tpxz3OD
httpclient.debug.min.jssha384-Ym9tOASNh45FYqB9N/Azx9TF+UEdy5zmJV0EQn7EOvBz7eOAGXcVekKXWm8DHqHc
httpclient.jssha384-LQpCUMmCvZ6NCr5k+bQDLtxqr/CgtjjIqjRKqY5/XjxHgyjiuiSdCFkg9Cn+YgC9
httpclient.min.jssha384-wgkVJnn5XTdVzwEC80nq50UVEERnfxB1deYvS/yaJCoTBTut1wj8YlE9HKe/+LiT
modulemetadata.debug.min.jssha384-1jMBUXYht5ZKXqdXWk/sFzd+INlHwnMUmkV5rrmfpDVlrRkm4k/wE2ZTkgo1s6+Q
modulemetadata.jssha384-8BqB7Kg2X9gdF7LHk9EEQ/sQRPmfZ/Qf2ugbbR/4BMcfxNtKVfD2XYkF9J5SBzwM
modulemetadata.min.jssha384-h+IrPV1zd8izYtsEVvXDzVTG7VMpVI24uc2s65BZ1yJegcXXgQ4WG/qrONnNZN4U
multiplexedtransport.debug.min.jssha384-shiEpUmew7QmMOHHTWJBElx8/qJYwbC06dfQlCLbb3Au2+2xLojA+mJSeKncKxfV
multiplexedtransport.jssha384-WxjHHGyfXHUZM0c/Y0ZH4nywlVI49sRZ/UuSjis4YIKUm4W1UK//bhPSBzWVoVa+
multiplexedtransport.min.jssha384-zJPAx3ITUck+eMz+6OuTJC4/FNh8kY3jfm3TraUXaccrrGB2rttVi2T1a7SJN6ro
replay-canvas.debug.min.jssha384-rA57c0S1ywYzPUFFTo1MDW/+XyU2+EQ5aI/5o7HyPoi/lbnkoFjy4JoiegtYwaXt
replay-canvas.jssha384-UcmHvamQoXYmx6CcmyzliQZC4y1p4U/6FnRMYIsA20HzQX/jGWzta3r27ltimJZe
replay-canvas.min.jssha384-qtQo4EAgzAQjfpZajPSH0MwWWgHdsBC2+5PtT0ky3Jpdrn6PwpBQHqRZ5UoxWrv4
replay.debug.min.jssha384-5p0P4ApOFYB4gX3vI/Zcadwezmqd4IkTYC1Ah3/q0ZIf+C06pIiCaam1U5wQdulI
replay.jssha384-2Ry2yDvV8A2rEqEOE2qDaK+4w9SRGfs3+VIOF8Zp1L+wVQsBgW/XCkjxqt3TdWYI
replay.min.jssha384-4BIPgKg9Fy9E4kA8eDue+29SiyQHYXMLQP3veIRQfubJh5jTRv6qDExzHcb4/Xu5
reportingobserver.debug.min.jssha384-ZrxLLRfhVQB+vjwFpdyC9qOTJ2J1JzUXVKXWlsmX9Lc0cdMST1P1iI1WlsWY+RG1
reportingobserver.jssha384-kBXvLdlRxYMPEwzXh7GHm+5ghrBaDnMgFOyP/m+JrGmY7y60xiICZibAU3io3jLT
reportingobserver.min.jssha384-tLyETPLr5tb8rw9nasP9dwl43oWDZcEN0bYkJ7wdi206nAl4xD435doo18U6EzA2
rewriteframes.debug.min.jssha384-uIIoTxsz8KVTaZfmRJT/lsFlRQSyVPaGPELfo4/8h9G94MlpL4YsdB6acsn4acEk
rewriteframes.jssha384-iiAcM+yrGM+dy4PuYOAn6sXyeXzHMYzJl6XkLE5gHskp+Lvl1TvCpw+ANXcFtBxU
rewriteframes.min.jssha384-+/r92/04j+3QrCpMiWMp/y978+h3xsuPSJ14faThmmF708m76FSArBe+OI5Jg2Ey
spotlight.debug.min.jssha384-6l8xWvYe4pJAu8AmfasXZRMG4zFyK9uaPYTDG+8yI5pMSIXeBN92g1iwjuZDxOE+
spotlight.jssha384-4NmkI96/LELruMzc56DlnuGZQowc1j2zMefBLmXOOemkrbrv+2v4S7T0sRQF9dm+
spotlight.min.jssha384-0c9ofDQtYS8xiLCA78s5P/ZLC5SnN/hS3RpTNsh9xIeRGk0sgPMq/tJrNuv8lMoR

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").