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-zBEurI2ODJLfxzdfMkv1KCWZULXTFMwA4k6940GB++jZE/l+GY6FaAa778eyI2ya
browserprofiling.jssha384-gyAx12kKXRTfzu4QR2vGu1WeSkUz/b70nXjQOR/GrsApKg+xbql+EFr1rbkLm1AJ
browserprofiling.min.jssha384-kVBgwFnb2yuU2uM6XAeBnBJHUTjZfhfqPArQgs959HO9sLTyJ2rVtoakaKNNYwpm
bundle.debug.min.jssha384-pCenuW0zofBTV6m1DVMCyls1eE0Ka6TDf07GuxhPFuuMgNkUtTDMynAMmdABApsM
bundle.feedback.debug.min.jssha384-2BuV0sphD0/K4ZW3ttCDXvyiEfK2hGtgYBbw+Xvq/In7UWf3+P1MpcdLG7aQbcpB
bundle.feedback.jssha384-xyrUqhl/OgvZxr5E0tl88SPY/kRzpYmEVMffNmKt1s7SxP3PF4dTiONHElEb8KyU
bundle.feedback.min.jssha384-tiGkRCWB5XnUjT8ihWlB+5fMg2qjqiUQW538IzqBUQjuHSb7lRECe73j97r/9MzS
bundle.jssha384-9U8WpZRlbU2g5Ge/VTnfuzYzblXjmcxwKxIGth0z6JkBkvlfuAuyfU/zIoa6NDpC
bundle.min.jssha384-PeBKZgicpCcvNw2FCZjty5E+c1yPn1O2rL6YKozLvNJSUeD8nlkugwLFdLauBc1q
bundle.replay.debug.min.jssha384-lx4CwShg2SeZ3f0YVNxZ2rlQXAyKDkl1OYdbpcNtCPg6mJ76K1zMCFk9x3AFKXF/
bundle.replay.feedback.debug.min.jssha384-S2Za/YRemCotZEcRjJr6UoX1GHET9jB4A3U8Cda3fDHO5OHIR5hTPTEt3bT5WpA+
bundle.replay.feedback.jssha384-Mgl6Njo8bFZ5bXFlInfuL6vrWzDg9h839RmcDokHmr0NMK94T/Si9A4k512vfysB
bundle.replay.feedback.min.jssha384-3hbVzY8MfJ8l6pFRytfVDsOAkejBBhu0G3G5ouT0QAjEv56zxCbhuSSVkUmdj3Uw
bundle.replay.jssha384-kEyg41wxq/UktrbmBIr+avT/nci1bcIh+AiLRUeytL5NuJj+ejrDsbWfOKQPSIFG
bundle.replay.min.jssha384-frv/4qCFhK4MEdvA4v1VP6kFMfuKNpL7MQqSBBbmlIC2jva2cbvsZt41HLbPAny7
bundle.tracing.debug.min.jssha384-v/t/vNJlYI1uH/hkwv8BBTNNTWZGSjdXqryNPfRRBEnDJvs3Zp3+IjvMCL6B/2LJ
bundle.tracing.jssha384-pn6LjNSlqWk5ELFzaVerhQBAx2zYLEm8b+7F7wmLZ1lrVIKL8i9TETRiDmrdDu5F
bundle.tracing.min.jssha384-Tv9NQgNN7/FzQlMPGwoznExcjQ+7gK1BBHFBypC+HQg8hIjJTVZegbw1aKp5xErN
bundle.tracing.replay.debug.min.jssha384-iKGbyZAOhZSqEMR8pgvUz9xauM1M9q18zSneFO0mwS7XO6H+hii9ygfYUQo0Vn1F
bundle.tracing.replay.feedback.debug.min.jssha384-oETUXVL6hYv7uLg3X1PL+bX8zGfUbyakXoVakkNTDAFGYfloeQHhM+MUMNbB5w6k
bundle.tracing.replay.feedback.jssha384-b0HvFYuCq/HQaHbnY/852IpgWq/jXXbOyYGnSQsObYvL4w7qz3caoUdftc8NJAnm
bundle.tracing.replay.feedback.min.jssha384-UkuwJju/PBuG83Cnvd0fFruTGERoCPfVaqsvZIgyPrurjbp7SPdvALuYvWXElaqX
bundle.tracing.replay.jssha384-WLmVKRO+pnrAY7M0tDlyhVp5m/7tt+Sy3jPFkX27aVs4wUsjj9FBm2FzDvZNshx9
bundle.tracing.replay.min.jssha384-YQtrqnHloP8hgSTeUPT8IhMNSNylXYMBsdeO2uhR10+WDxy9A3Z12OiNIXxc1mTr
captureconsole.debug.min.jssha384-UATc3LR5SS18eSDtoFbveDHLzFb3c5robJQdpdZEqG3IOalWpOCg9ztD8wDefvqb
captureconsole.jssha384-hPNImnHA/9EgCrIPK1JaQeuDwMGN/+yz80KX+8V52kmCG/lYi1O5m3u2nI/J17wT
captureconsole.min.jssha384-KiNPUd/hl13CMZJ+0U896Q/EFtpPy/O5VNdpUuP3YEidJFDb0wU3/pC9XH/CuSjo
contextlines.debug.min.jssha384-8WIIUQO6apHccOBtx9PaPq7cLD6Oon4Gf5KZDZlVBrQF5/3BW40g3m1ofrWwQhWo
contextlines.jssha384-0cd+eok/P30pRy6OKGxQk7EIzyCY6jrOoWdbS73mhoDDNpYheCTlgKcZnseOwJQ1
contextlines.min.jssha384-kpBJA7o8YEW2X/ogiQVohLKsCUu9MSEo2hUXe4EJ/p5pGnBKymzLEAAC7/oRAp0d
dedupe.debug.min.jssha384-590Rzoxy04lcnAh8DRHv3ZG5UU/eudHQPU8G5/TfikDVO25XJs2Tu266+DFeYo3k
dedupe.jssha384-WTSYjgZyrTpKiZH957JrJKkg1ErzBT/k7iWVEG7rjpLxs33bUpDaetXTfcx7rxs1
dedupe.min.jssha384-5tJugltPEA/L9rXlBbZif50rNAujqTxOgyY6KzFpLdzmlLHtJvViYHel0cU4loSJ
extraerrordata.debug.min.jssha384-pPOaxvtbu9Kihm+xT08nC59UsNUlSF/6ZC5PEtaud+hSRTEtNlr6pUevGavgIXsL
extraerrordata.jssha384-IiMzobrlyaMX7su0CvB9n58f0vzHhUH+zli4883ywKxmnjqx3dRb3C0FrabJ16VP
extraerrordata.min.jssha384-8/29iMD35HKJu9II75k9TTumQMVPIltIzkkig1X+B/Btg6fehOuYXjADCiX6b5Ma
feedback-modal.debug.min.jssha384-aRcX/9cwVt154ncfZu64RjAj/Q8zDTtscg8a61eGUNgyi3tjDeBVhDn1Xtwts7VW
feedback-modal.jssha384-ZOfXBO/hE3fWR9LPpTnbiDLHDy3JvEG7m2H6auGWwFKZMneaxK3nlJRPrkIXJKcH
feedback-modal.min.jssha384-Rq6yCBZOi1+/ID3LnW6UCZNGDX3QPcDwsHBEUBvW/d9X6dTx4RAZx5chwrBXeOdv
feedback-screenshot.debug.min.jssha384-RWG8YKcPzTJ+5+QFFh2cq7YaARQ3uQCn0qlFWLFx3LoyU7T24vVcFwIZ9tPM7Bhl
feedback-screenshot.jssha384-TT1P2o4xVwZVTiephj4K3Rt6hCBahYOYsv1xuv8se+mzS0kDtUoRvx2U2FLLutQr
feedback-screenshot.min.jssha384-Pv0j6KCWi//c722KQp1CL4itQRFrVsdnKK2MTWVubknZsvFI2WZ4T3A/gq0kgABA
feedback.debug.min.jssha384-G5iKwM47lQLB33z0XO10sseOx/jPkio3AuvduSkLJN2wmXLYikAeJf3+abU5VQM2
feedback.jssha384-wHo3FSGjs6rp+jkwdTO8FSaa6Wm+dhgBaSziNHQqklx5WE7CCOdN30LcTK8+SsSv
feedback.min.jssha384-6qQnEy6GebJPAAF3/lZtoWAg+3NqIj56xKY7CffuARiOUIyf/DgkGwNDAEjHsdIj
graphqlclient.debug.min.jssha384-L1xp4nSTAKXroOxVumlu8tXWT2ensLZJA7aHVnXoyUssoQ8Qv3bTeQn81Y8SG5Ta
graphqlclient.jssha384-Jd3l5+MQNVoTRSF/3GW+u2zNAF1mHz7n665ncrKg5KqC2oQZOTevS68dmaImANmz
graphqlclient.min.jssha384-MKlOGk6mE1bUebTmfAX2CR3XoTdsSbUN+wXZJGjzoKUwoW31IH/lrDh6T0xz7Cx5
httpclient.debug.min.jssha384-B9VsKyGJbIOAxV/ha9X8JIPrhmhlbQWwNDB4UdehN+sTkJ1EjkFLCk8UX6bzMQnR
httpclient.jssha384-0JRPI2FnWCWGAzQ/xaZwbJXHT/XurVz1imwwz2v1ieWlXlRnkDNDCkgog2NcZbEL
httpclient.min.jssha384-HRrCoBBWN1NgqlVU/0OdiRYNh16/+IaUUBblTTuUYN0o+lxYPBN4QAbVjGrzel2R
modulemetadata.debug.min.jssha384-+TPkHKKJWvF+rgupxD2oUPvYGkG6/jgkd9qOCjO9N889fKa8ZXC0zMrf2a7WlVuU
modulemetadata.jssha384-4LmxCAQNbEZsBYQCE0sb3rbOGnibWI8WnJGqM7qtyc/9a40lYJTsiUc1zKZBrspM
modulemetadata.min.jssha384-IBPkQUnLN8RnjaOoHYzc/NGNSVsgcs89xh8AI+qxzhCGLihD4k9096ZuOmS9JmJQ
multiplexedtransport.debug.min.jssha384-9T2m9RCiF26CkALF9xGiEENWNmGdWY1STu9s5Dg5KchETnyloG/MpyzFdXLrCA47
multiplexedtransport.jssha384-Zs57c3oWd23HtobWh5s5ttHDc/ZY1OWr/w8LDJ3zdVKG/TAIXODFnC1c3rYVedXv
multiplexedtransport.min.jssha384-JeRjpRPijQ4nCbJef0qgrpg6Lzoy0aSI3dftBCmIEmNrPFTBFv4m1CR/v/6PTch2
replay-canvas.debug.min.jssha384-R5NMNr6jjHdwQH+ypVLjD60meMYZlna1MrBstziZac7f5BCQaEpugbc3+T3ZQL2O
replay-canvas.jssha384-0mH24xxFIkZknkpSrXfRDOKfhZSpzxCvJeugE0Lx7crn0Tjr+jgaYX5jhwHNLgeL
replay-canvas.min.jssha384-f5z5syUdAA+T1AsAIfqsyo2LB1DMfso9r9gaDeCEdRCL96+GxU3/cPZRgKZ1eOlq
replay.debug.min.jssha384-yRolFeSLrq5Z1G/EyFCwwnLw2vUTumUUp35KTFBfSUDoeVvF0JjZFxMCoIFLlPzt
replay.jssha384-DTR/jh1D5sfxdY5oECwAYp61lgvlfE1tyiNC13hHm13xoRgJ158O8QA+DmZ8XMVG
replay.min.jssha384-QrvcuAkayRqAT8cMTIEV9+AZB7t2P2trEKFi/U5SdzI5cj6IkipaAgOp3S+yFU29
reportingobserver.debug.min.jssha384-/WBmEP0a3K8MmrfB/MDBoqjj49cjo/B4c3ByRmvk0hIzTvnV/aIRgGVfUNAd0Fz5
reportingobserver.jssha384-/Dn4DiWy5565c2woHaX2nSLD9F1a1gobGMxyhMIJu3eJZKbBykqXN6ugHaFA7Wty
reportingobserver.min.jssha384-cjmR/iBQdZvkiBs6ZCkf4AhAUuS7Ajh1sTWTIuMFxcO76uPFxqSudbJKLzgfuKUL
rewriteframes.debug.min.jssha384-p/5oAqqcef9ZFyE9WdBpxqlv5ORu+nQV2RaVkEbAMthfZ1/FU0/WTWgo1jly90sh
rewriteframes.jssha384-Wsqe4pbOKP0MgMcTjORXFFySzxvaG+H9h5qeTcbLOKag+5ZpdH2aXRyJxcGzSnJO
rewriteframes.min.jssha384-A0YAqQg9thnabGLKKvFO0jli6DHQSBQAdq8P42+NF7olI1upyrOEc+qiSayd2QEE
spotlight.debug.min.jssha384-yhEreWrgGb77iYcI8NdO7zgPqebatwMb6zBwWF5pIW09JgMNvMbjENFQXdKmPLlK
spotlight.jssha384-c511BOupSt6/WHe6FAhEb4jRZ+v6w0T4JuM4dFyBI3d6E57AYGY0KpACOV1lQ85o
spotlight.min.jssha384-LHtDJRmx91zCiSobv3f9lKkdDCvv3X7YbecTWA1L0i6z/Itq47gq0/AIuuM89221

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