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.11.0/bundle.tracing.replay.feedback.min.js"
  integrity="sha384-DxFk585Z+WYO01c2yR0ZL9AdcnuVa4lDJBukEVwbwPvs+mI9MGMv5rexfcMMJdX7"
  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.11.0/bundle.tracing.min.js"
  integrity="sha384-9NAiK1AuyTecuSh07sZ3VSsLVUCGVbYkmYBckFl45/Pc9zmEizUJZcWxqxV08oe+"
  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.11.0/bundle.tracing.replay.min.js"
  integrity="sha384-7afATIQMv8Y1aZC2sNKMErP8qz4gueseZLKeHSLvE+00A8CjzZN9icB94FJtOuIF"
  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.11.0/bundle.replay.min.js"
  integrity="sha384-ecKqArz4DwkPsSIRnf3i+F+r/Ae0uiVCtjaP1UoDHqIeCSz0JV53YdRL5eVZ8W9M"
  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.11.0/bundle.min.js"
  integrity="sha384-BnlKdllVgUGUQfi5LagjPDeEFYBkRbmwABaq81L0HIAxsBFfrr7YqmT2K7uEIsXk"
  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-0a3I3EkqYLUORbpueDTq3W+Vn8+PbBP4e0DubGrX2wtEBVXEXiFvKQBXcoN25B6o
browserprofiling.jssha384-zQzTCHiZHAyQN6XYqmjzZosdJbTUPV/pBuggoviwr9yifz/x5jYxa+w098plom3/
browserprofiling.min.jssha384-os1h74nkb1FvjSD+flwpzNGHoPXubBvKSkqXCA3RYv9J+9BIp1vyzeg+H/yRxHtE
bundle.debug.min.jssha384-5p44GnB/+DchiYBmDnLdiq7D9oyc5h0eSJ44/WWOMKV7f+g78em9pUJy9ReStgcG
bundle.feedback.debug.min.jssha384-xnsHdrPUcG1xntTTx5PAXoPsYxO1v3kMo8/b8h/IeMY8kcjhHp9WCJsV8Vce1XwE
bundle.feedback.jssha384-AUEAAgqHu0VMdcJrSlWDQpva3Rbkqz7KTRDmGf1+rJJh7b8om6O4DjJ7wqQYLEU6
bundle.feedback.min.jssha384-lhAiNnZBkZLScMdh6Bj8LJL2BcV0pjJiT68PaGEpoucG2ApxCL/Rq29DoN+gGohw
bundle.jssha384-Y6JJRbJWvKAWCjYNfYj/vlgd62jPmAWApyr2Y5en6IW9rGlFx7Puj839V4sn9uHu
bundle.min.jssha384-TMvSmh9Qn2BqrZxgtPaKcwHWB0gjLK7/0iSo9k5UTRNmc0pQL3RGlY32I1ZOBPoz
bundle.replay.debug.min.jssha384-7iDF+kZARhhoULEHNbAzZydoDqMdDLWg62f7P9WCU8GAM8tTiXc6weup54KziOSQ
bundle.replay.feedback.debug.min.jssha384-wnZ6mU6DDczMjgM246w9rwBbFEcyyEPCuLHo61gCp1h3botIhhab0m0cts94te5P
bundle.replay.feedback.jssha384-TLmGpB7YyAtUb6X2zkggSunAWtV0x/3V7IF7c7ZHM2ymYBmHcyIqJPTdQIcH/RcJ
bundle.replay.feedback.min.jssha384-fe0P8M4GGxa/54F75TRfnLbNQD3mBYrFirfM/F2DcSFlrfVdkSB5f2+sJf9/9pdo
bundle.replay.jssha384-pgXPAUK5y9/nqsJ887OrWqYR3zMvWIc5ZC321WIrXYpcM2GKSbkEht3xYWaEpNFA
bundle.replay.min.jssha384-oi8SIlmw5SFfPg6+SXEND3nOzgHYk5e7acLY1Ar3LOsGW2jJGz+E4I376yhxLJsG
bundle.tracing.debug.min.jssha384-bMZJuFwBaSrHEF6mq5KBW4xTnL3Y8KpzVTTTYB3d3Ex7Rx/B4gB2dMKNt+RNAmjN
bundle.tracing.jssha384-BZjmg84YJ0EJabH1Se3LGaEaXjcAzNWfTXShqukYPzVUAHrAmlqHUmAIJBX/v1t8
bundle.tracing.min.jssha384-0nUJETda7oUM2YfOK4akWDE1bG0pDwaLozmVMMuJCVtahFpN7EENeWbMoRwq668+
bundle.tracing.replay.debug.min.jssha384-JD8dbGpU8K6vz4K3XBrb7OvM3Q/MHZcz393N7R3K9hvc767udxhwonspcR48XR2T
bundle.tracing.replay.feedback.debug.min.jssha384-BZbxVcDIaFi/x3fGtzgOJ4M85oMoXdCDw73HIvSfLgkSeMSERP7qL3UgXEsQWnHq
bundle.tracing.replay.feedback.jssha384-5bOcvj5EpdSkNzl++thOO4sDx1D2Ir6eqrTs71oZ1MaWcb4r7wBsXqdlnsAf0iy9
bundle.tracing.replay.feedback.min.jssha384-yMAmhp5HNX0uz8UtlW+p5Mn3i9XMr03Jspb6pBwbtbQh7BHVjW4UFnybdaN72+kZ
bundle.tracing.replay.jssha384-yT5IwSmm1kJX3uANtLF1rJnHJmHAP5F8ZQjG1Pv1Ip0raZvL28U97zuU2vJahUbe
bundle.tracing.replay.min.jssha384-+bQxHhjxYJSwjLfgWqkFMh1LS+/in7WBOeAM6D20WFi+frwCwpQxKBECVH0lUDSo
captureconsole.debug.min.jssha384-XP2kpI4n2sb0380LqI6fQFuGHGY2mxF0imaTbTC2A0McnKxUNrvotJCztoyObzce
captureconsole.jssha384-rq6p7+lbsxWF1q+CMLOwUaoyqwYJqnA1Gcnrq4KEkhwlUiWEr7UMgJF2KCrRsEJD
captureconsole.min.jssha384-MGMoXeOWgGma7oJRfldR0ppFn1qk1TIaZLUXLpjjbRUDHkCWtjtm1Cd7ql1ULEEb
contextlines.debug.min.jssha384-OIEH7lTerakIEobkH8EGQhKPm2A8yxF5iMPOGpp+jlDhbgJyn8WJKn1VlGMVWzVn
contextlines.jssha384-7gCItv4/mdvL6eMogWDaJZImF9kJoDJKC97/WYLagc1Ca39JeVF4XtEhsNkpJrSK
contextlines.min.jssha384-yIl4ycpNvQJuz2n9i/Kdv3hxJU26svOt0ozSVcWOlp+arJo0YT8XKlGV3gEzfmku
dedupe.debug.min.jssha384-Lw3wbbJCLjBwMsXj8cSc2ObX8zalnFQhmKHS5YoEKuLH+hqXkOWmSUbPtPvAzs3h
dedupe.jssha384-NVq3qbW5QhSO8B3uN3hORmqYNF6aHdYk6dEIhtJUhGdEKGoy0tw/zYCCm3elTGF3
dedupe.min.jssha384-8OqGNFiYlxNyUp8IAovnxuUC9ae7ISvqTA8JELdsP90gKUB685Gku0zG7rx8YKFm
extraerrordata.debug.min.jssha384-dWzMor3IYU7+j3pkTvg3W7fYaSSpL7Op+DFLG7bsSSoaIxu5uYquFI89QU1mxU0f
extraerrordata.jssha384-ZrF2xrv8jGZRvX5uqbNUuAqoh/akJWJe00Ql6jyYE5UHjjIFerD1ql3wdAq7R4vn
extraerrordata.min.jssha384-/fGo798+wp3JkAsu5umxbAvQoUgqMsliCVTr3vzFTMALdSPBwTRJyntNoDik80TO
feedback-modal.debug.min.jssha384-wFKaDuwjrFmC2cZ0LwbuOcxenaO0OlFXuQ7/0nzDZk4teEyjyZjrzIKIjGSJIdti
feedback-modal.jssha384-fxsplgFAowddrDAgl/ZyP8dwxACBj3NMGHon7Ii/Nxg9OWZ9mpRel1cmhSjD/ON5
feedback-modal.min.jssha384-sMaHv+czUL9gWHadzZZP7Gh4OqmtM2o/EdCtpm8DgOhpFKJggUPU08D14LOBRI9d
feedback-screenshot.debug.min.jssha384-782ymcEP6Q1Ga3v2yaz/pVlT2CFg14qTXt7XAuYaMnPVIwghLr5idWUeFizAmlkD
feedback-screenshot.jssha384-6Lhdurjzqmbf0f7csGYW58LzsxDhN/U8Jn3hO+RhpMHQN2+2Ox79/U2AgIcgtFNo
feedback-screenshot.min.jssha384-M+EYxsVD6CMDf9wlrwyVh4Q3aVUw8w83q+ExWO0JmyuwpStFilkPGLkmYrBWrtox
feedback.debug.min.jssha384-hlTB0/hsl2BhU+P9s6wqdRIa3afso6MEjGeIQWAmkItBhIh+Xbp0i2x8Ni1AmIo2
feedback.jssha384-tM81Qbw6hCtsgm3gchsiXaMDL6KLr9qtY+DHpsaqOhv3R8C4F19R/jheWkVJSXK+
feedback.min.jssha384-R2WW0rvamK9GTOwR2h3feeQLsaxa8FdYGyhZtJLdWpCf9T4eMbytag4OUXZE5pM5
graphqlclient.debug.min.jssha384-WDU+n2TE6zO286k197661JpeapzJZTRkM0OpXYQuKSp9PJ9srdzswL6axHvcnT6m
graphqlclient.jssha384-dUKXR21eMn/MHuuAGHILeRcBL816ApPChp8lE0bGewkbQXTl4y7m4kMfPGdBhpQO
graphqlclient.min.jssha384-xbtBnCX1eLklGEDoIwErnmn7azMXUsj2bWHp9dGLtHllHpjsvI/9laAypI1m4ZpB
httpclient.debug.min.jssha384-n0KhrLetxUEubTKJTW6X0u1G6uoLhma1rPoQQAZuWCpuyxYdrMvPcT4y660Gh4Uv
httpclient.jssha384-xzkpmsgxDrSIxIrVEML2HZq/upIn3TBrADO11Jy7OkWOIi85n2oQRTr1ECOMg0iZ
httpclient.min.jssha384-40AXXmDZ61RmEt2PP7LZNMa6mPuutL1lEV4OwHBE/86hwZ+I0KbyoqtLvEN4zQ1l
modulemetadata.debug.min.jssha384-jViqzptXLAZ7aCIIZHQBZmx5FulgVc3N958d4FeGyS4fwcl2FBCFZT23xrNF7+ai
modulemetadata.jssha384-vKXyk0ZlFV6aC43OFC3i+w6FbFEyAEC0XmiJKNSHSSa68xZ1pDUmWKohO5qO+Co1
modulemetadata.min.jssha384-P0Xl78vhs8vJxHQ7u5I7Cl4XDOSBANxXnTHPEWjzhR0ta+fxULUGk8NMebmzKP1S
multiplexedtransport.debug.min.jssha384-ZCynR+LKiTqRAz21WPqQRTWX4DVZIDFHvN39ibABT86JMTAyuDBxCW5NenIXzWEe
multiplexedtransport.jssha384-O68kaK2R7ofeom9gW5UvLs5nPne7FrKkLjrdtDjoDVHAkMRnS3DBqEgQ/PYaCXBW
multiplexedtransport.min.jssha384-o6i48lVVg05D/PxD0BzVSH9YJIVroF4llZxRcCn0yM9HJfVUOjUEt+24xE5U8ubV
replay-canvas.debug.min.jssha384-2y8sG1Gp24U13ns6OyO5KaHcTcbHUxwRARRM3em+PZlEfJSmfoZVX1veLRgNEjm3
replay-canvas.jssha384-hiXnAXY4Zp3UdrfxLk1/5H3JX7FdXSgPOYrxuLHjS6qL3N8W1kr1yhPmmaXERuqq
replay-canvas.min.jssha384-GnPZY8bh80pzoSxt41QmJW4sewpc/222sdaUoIu8xhFy2BNSfeK3lHLaMnJbq7fd
replay.debug.min.jssha384-ur9SiVNqIFA8gBTQ78k+FqrIa7uTh8x9ZujIeLRsi/HyYWmEgPQA2Az5eWQLI4Ya
replay.jssha384-SvA9EPB5lD6xQ+x8L7kwYTErLFgkc0Rq690Vh6oRkmTVTaCKR/f2yGxoarYsitAy
replay.min.jssha384-rMXDLLSR/PlruW1Rx2rBw01iMsqhSuM+cepPBJrVAoqQ0tqfI9lvNHwZ4+qWfRHT
reportingobserver.debug.min.jssha384-zSZk1YjylJIFZFGHsu7e9OJVdseUyUEWfbBBIIvvhA4F30zUNl9AyRzrEgb6ifXP
reportingobserver.jssha384-HwMmmTE7CmjoyGDuxJhA9tDrCbUBw2c8toJALc39XXpUt878XtV6mRqjbkx366ja
reportingobserver.min.jssha384-bFTpOcBeKPOCiTJuVtwbBidtJFjUvrhtDaJ0uAEvLcN2tIDX+aXWseUzBktxBIs+
rewriteframes.debug.min.jssha384-cCuONTEhow1IznLCavdJVMgycE1N+Iwsdbw34Cm6/a3VxM4nxugHQ0o/KELzqCme
rewriteframes.jssha384-uoPXDDaCFz2XXND3Q48Sf5aJJ7UDBaKqpUW7NDvIr7mRqyV/6BDarBS9keMYPFZq
rewriteframes.min.jssha384-zcp9mS5Yp1yKXMewPhdM6e3+ySVKRyUGUfuKKqdSSdS6V0ndjk8qm1wdF1hPAz1j
spotlight.debug.min.jssha384-Kh8YlCP0Fj0mvqRo03i/901vutgfrqeS61bP+31Qnx1QZ3SjXV+AB7PF7Iuo5dAU
spotlight.jssha384-gMcp2Gj5haM79ClPXzr9IK1odTPLZR/2uJGIO1jAHy7jI3pF1Ci+fK/W9zLaYl0O
spotlight.min.jssha384-QeI9MCI5n/WLakLns+GQBuml+Kp9KooOs6CIWSJCiS2g+wzQQ1wp+rvCitmaeQFT

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