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-0manvEY3wtGjNC6ceMfUQHIk5G0qv9XXhfM2NpOVsm3IE8SGOBEwOhPz4movIASh
browserprofiling.jssha384-m5yla6DTZ3Gq9QBa958icyLtsLcSNRm+n8RGplqlRkbSoROCtg0g4KD1kjXpBtyQ
browserprofiling.min.jssha384-hkhjnwoKWNP9dJ0pRJCBwh+RB6GW/1j/Z6innnTiIINg70CeSyPx1z+xGzlpIQ+n
bundle.debug.min.jssha384-uw7bjkxxio764FZW5qPSQyP/B/DhxjmU9z+tHFS/o4MgtqFGNhQvR5QQf6QtGAmi
bundle.feedback.debug.min.jssha384-uMINqqhdxtxCkx8+kNmfke9aXVBTLXJRFB73VuEJVBbH6eMGz+5NxfdgIVPWN9nN
bundle.feedback.jssha384-LZzcM+ZXvyII1FjWJIdgS7KUmmsDzAb8KRio8aJwD+p9VRJ8ykH3n7znJUbRO1y7
bundle.feedback.min.jssha384-KARB/j+cinFbzKA2+vRGB3jmsK5NFhlY5KspQ1ka3t7oUaceJ9WsrsIVGZW69iYS
bundle.jssha384-nFLMdkVk3clFgO4zk4NoJJI0x5A7gxhfwKbkA8t/CCHBIZfJQ3JNeL5xQ87F6Cik
bundle.min.jssha384-9Rr3ZyKXamPudE/s62I9+NLbKDN9XPHzVn1sXMKtQ5m1L9s+n48dRMYZEHxNGt0P
bundle.replay.debug.min.jssha384-xIzwtjklTOOn0yq8/jrhWS7JsQGU7UgJoBmqNIhBldnA1sG2ZoaJnyFUaz2R0Oxb
bundle.replay.feedback.debug.min.jssha384-xkjQjFW4JpXxrFUYrwR+n2V/X+rhmbbRUw8egVb8zrYPEwAUTXTGoeCBVGlyD8Sf
bundle.replay.feedback.jssha384-FngDt8POdwrehp5aYSQ58erl9/hPLCdve1FAJKKGkFAvFS8yGlyMNIaCjpDioPWR
bundle.replay.feedback.min.jssha384-TQuK+uVnX4bTTeoEID4iFS7TRRMgHPg6rJ8hX64gSgDRRh0f+6u6UNGw5cx+NKXu
bundle.replay.jssha384-T8t9/s8OwTuS1IwMC34UJtiF6Am4VGtC7al7AM7XKYCHfh4U2LVPh0xPpAeGTjI9
bundle.replay.min.jssha384-mBsGCvr1UVir6UjUIW3ibiPwQxZrj/tZxHBhJu1HoCVUjmuRjCVNyxiJyPFG/ro9
bundle.tracing.debug.min.jssha384-WmfYj3JLwoIbRDaYZDI2UdZ8whR3DJ7B3vNI6bJ5M5CMwAP3WFVqq1XHi3jir0sb
bundle.tracing.jssha384-g8YXrrplDZUrp/uS3BF31vzuUHJftXPJa2t/ngX+m7GkvPIsC3286SttWxmhWrHF
bundle.tracing.min.jssha384-zbuHaHXLSVPvJOVRd6SITV/fj+tY6EnwhO5Jcomq/NlaQi9Igr5d/RZd9PCPm3yV
bundle.tracing.replay.debug.min.jssha384-jftc8MWDuL8vM19s7mjowLloRthnv++d8rWap9bUqeCRvjIo4800NzKnzzKfNLYY
bundle.tracing.replay.feedback.debug.min.jssha384-LbGD9se4r5SzJfTYiUSiqKulEXYEQpY2XMCuboOfybS53QveOTliLIkQQBxQCjhi
bundle.tracing.replay.feedback.jssha384-tIoBNkaejUDQJFLH0HpHbkkDZ3Z/dCCTr0qKa3vl/tFqiXfVJqfo54vE9fm3bGzh
bundle.tracing.replay.feedback.min.jssha384-92N5u8Kf3n6PjH0F76yRkyEvEF5R0At4k2Ptj7eLJQqdHD3nhhFAezd3HbpbSNo8
bundle.tracing.replay.jssha384-05okscn83YO+n4PSIvaTZxS/tLLldlkhCl3thsPGgca7KHpAHUzjy166iLnkLM/3
bundle.tracing.replay.min.jssha384-9jBRZL7VtE2wKJdi3L8yhjcqeXGUASfuWtw7t6fTPhWBrF8Gcom99en+s9OiqBUA
captureconsole.debug.min.jssha384-ppQc+3XP/HU7/lhR03W+gba6IeDQeP9r5CxhygkOKJihZZazjL2zPG8VF9h3c6YY
captureconsole.jssha384-iAsU6Quz2SSwTgi05AXK+xIZfvLN/YSZzKNlREX3U+RkWPXueHNpBLSDJSQ5XLqg
captureconsole.min.jssha384-RLGMp54POQzlTxP8054yS4haQ3BPCQCguPpB/TYkpMByO6A5YMTakfbaUJS+Vrv3
contextlines.debug.min.jssha384-Poxv/ZakNjtIQ6K7w6oVsUpk1/o7cURQcjZluy5YeXFaBkMJCscBqJrJWl8TKje8
contextlines.jssha384-Mmj30QOiWBLTfH8dcLH13KksO/HZOrIiWxxvxtiJJOdxzZD1Bhtlpka0GEzqtjrj
contextlines.min.jssha384-nRJRJwMErsLvoOeLgFB6/XQHO/6h0A//FNufSp4cnA2+CVooVuLVGBB/5ye367EQ
dedupe.debug.min.jssha384-A136OElXf78NlGkcx9CNWmad7+MogrDZWAyxReyVegtgPrATwrfaFYYeig78wQs9
dedupe.jssha384-C/9Rrpd/IwkBaeCeeondBUun7vVUqA543wXhLxTdzciFTsIVMhT5M1awEUiljwWB
dedupe.min.jssha384-oRSklKa8mpM1WdHwr9q8I7gYkT8ZzGqUMALDzlABIq9DbJ23R+xcRoyw2DE4oa9R
extraerrordata.debug.min.jssha384-RXz6eyz+8t+fXNXbaXt5IpxY440YHQme1F0Zlsq7MsXY8dlNiWVKuMdJmh2FQ3dZ
extraerrordata.jssha384-+bC4m8BN+U8kuLdyaNUQ3Lo3Je8AOKZWsNpLklMnY6WWHGxXP4PCwbDdyHjMU5KW
extraerrordata.min.jssha384-AJxcdbhiziO9fG8pcnSAFYv0mw8mbUB08zqvY/Jsv9Ogc5TuESX75P/g+epVh11H
feedback-modal.debug.min.jssha384-aQLihIJDbQDXH/eQQKeBWJFTqJaA10oZM1ysQkxOiQkReXuaodDkyu6+T6q3lsb4
feedback-modal.jssha384-4G74e+FFk087A2uBEDlY0nVGEKIYUV/l9TcXPC87Up/srsz62zFGVlvHSbZ7hx0n
feedback-modal.min.jssha384-dov8+a1ClU/vrguoD6HNhL85YLLyqK8RWgtYknGbLpvWrRAT6hoSVbWKVW3X0hmm
feedback-screenshot.debug.min.jssha384-/agNe8bsb1JNYI6tWlsBy54viPrJXKL2AUzWEuyeEq/ilhqJyZUJ1Lpb/aPLlseP
feedback-screenshot.jssha384-Gjkt3S4G/k+f/wSYXgNJyl37MKTvoCxcJJ5D6waE84yPtpQJUVOh0yEku4iPupQV
feedback-screenshot.min.jssha384-0LVISAwrmQA9sWLQBG6zA1fSaI2khRGM5AUe54noG+eOUi9KPv4NELc/9+zKw5zZ
feedback.debug.min.jssha384-Nd4z2MdddiBOLtTbr9T/s980EcSQhYArc8r1NVKAUG3wlxVeEcqCD+c3uUPBxqAV
feedback.jssha384-LOVDgexc2UWE6aZqdaKQ3suRre7bn9Zl6HitroqaFeeIYWZDyeds/JREsPfdTCmB
feedback.min.jssha384-Q45Q5ww+DhoN/3cqDDKqOJkYrl0/LhJ6ImCNurTMVsFHSfPi0R81d8Gk2GrRv3NB
graphqlclient.debug.min.jssha384-0hICfsaosBxR+qTb13Jd4qbHZbuP9CkyqvTUxbqcDIf6RVmwFL0uGRMpDmouBaSo
graphqlclient.jssha384-bGW19fZFcveMwSGR96xB+dUqli3z9CrsL4MTeSl+LQ88w4zWD7BTE6M2CDO6Pvd1
graphqlclient.min.jssha384-4orqTbomJcA1Mf/KZz4/ongsQxxATYExzifPb2XYO3XzvV5Dk6ub+s/zG8IepKVZ
httpclient.debug.min.jssha384-sJ8zLeFVzMMIOnJYrK/yqjicfB6aofpUmrAdx85/cH8OvIoptVsMV7gLp2A2nnuD
httpclient.jssha384-H7U8WsdfGWQNu+WvQGo+/sH59o8puZGJX2v0MYwADF2LYLkNy1cus/KFYav2HX3P
httpclient.min.jssha384-ag7KgvFZJgQvCIDolEB/7YAhPttTfOS7OupyIpTjnCmtkAbRloucOszExFlx2Y2O
modulemetadata.debug.min.jssha384-BZzDTl/lNMuPpo3JCSnD/YlgxKF6iTRu9roQf3tleZDiP0pwvULcojcDw8SVvXYv
modulemetadata.jssha384-2+H85bxrOyrPzpesQWaQAe/M4z8klRaU47dunJXmDzMBbWSeKebozUNYsLIv8Gta
modulemetadata.min.jssha384-JzfCIjyMKXnUrsPNqihK/9hVAstvK4aZRvEfZ2z/ODFEHbS5sADiRwTLxPF4kI7Z
multiplexedtransport.debug.min.jssha384-SB1FTYDM5UIcB0BhRL8tWrgyBaUEu2qhCjhpIr4HblhPzomLQ75PFxaJjIragoK7
multiplexedtransport.jssha384-Gpza8KWdKiF8PyX6ueO6x0cYu3Tx2HmAhERSKFTisbIM73pWSfjvbIGTa8GneuNi
multiplexedtransport.min.jssha384-211jp4sbDFyevLDohKZUkVhNt0/VCQs2uDVa44r6+6/5jognqVbOdnTNu2GmlnHo
replay-canvas.debug.min.jssha384-+/S7Nin9gCNcBdmR1Jvver7MdhXfkUZcs3XvrSGg6LBLSaph9z8CKbcZrx82cytV
replay-canvas.jssha384-5YBwClEngMa+7/rKusD21ibLcPV7C/PYvwHEmHbM56e9nYGeH/JHD/CFOz+dJzL7
replay-canvas.min.jssha384-4c7EAfcExNaoIHIu2YEW3NbYekKA9OSLSdVERQ2LDAcbuRuUBltziqJspSgoq8um
replay.debug.min.jssha384-5LUbg3UkshrZ79Lc0qastZ8Uj3Ng+LXGk+OEyDkVs2BSGJixjlNN6ZkRfQX4maMk
replay.jssha384-Wed7X4kPRdF2NZg/YFKpJZkCTLt4KwGPZ8X7sV50zlhGeJ001WPRGOqRlusLuj8a
replay.min.jssha384-9Ij5v0CT3Cpbe7S6OTxTIfBtzhg72exrJp87ceVxRQDU1rVn4L5OzyLDIio26d8x
reportingobserver.debug.min.jssha384-CJGxdYx2sa6OVitRzxdlZ08bLQeWHA+xTyjFNXtRL+hZZJeG773ZlWfDIsZxRwYu
reportingobserver.jssha384-RUsXPa1Y+Tfhe3NiHoyd3jEEDnPeIl/UyxcOv8JHI2S4y3g81XuXduCcT/cjehxq
reportingobserver.min.jssha384-36l8VOLMqqRLMtWrv1ixp263N2rJpPoXnYwJrhmyG0OLU8w4sr7L50PDvQ6UK69k
rewriteframes.debug.min.jssha384-QLoNxqWgevUKnkrz/rDbinNebJVIpslphZ3UpCe+G1oKt/0h3fTU8tFnZG2V2TQy
rewriteframes.jssha384-8zm7DUBXCsN0wkzv8SXLB4rJAQ7bxhrGHtdbpKLUyYR71oac9qm1M0cEMsj2NYpf
rewriteframes.min.jssha384-TeuRJYjI3DEeAFSxjee1cT/tmgtBUtzoJ4pOpBTTEE98jw5vZp3VUYVx3p8pgxld
spotlight.debug.min.jssha384-nQKcivWRY5zlq4vVFrc4qyKsq3WiVswK1+P4OxAbaPNwLY1VhTATxvzz9Bjn7Mnc
spotlight.jssha384-vTaA324pvCM7tIA97N/UZkO3loIaXC2+DO5IyvMSRRjL+bEa88NgKnzfxpY3lutr
spotlight.min.jssha384-Fz5O/f2SXq6UfMhSy7rz2Tlq/3Ld8LNzq4vTox+ypInqhVtgzRtqtTxs4RRtzWNr

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