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.18.0/bundle.tracing.replay.feedback.min.js"
  integrity="sha384-XaIdryMq5f71VYvxDBy9zZQnKLIOyR47vsccplOmZ0TqcniIFwkDHJQOgWhCWY5X"
  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.18.0/bundle.tracing.min.js"
  integrity="sha384-Dcw/nLAg5vuXNtxrAIf+SPSGHD0TgO9oij/RDd+gwARd2I9oOdsc8NtgRrHn2vLh"
  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.18.0/bundle.tracing.replay.min.js"
  integrity="sha384-IYR7v4QWuGjli1forvNMayXsHaaO/CxRAVg4ebLfC465lChIIjBCCxl4KlsxkiJs"
  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.18.0/bundle.replay.min.js"
  integrity="sha384-7ss7Ag0PHKSBKrSzhXn4AB//QTq2C+UwNqxe1XXwX8O8ojwnMvQRDzO8D5V7ZQlG"
  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.18.0/bundle.min.js"
  integrity="sha384-5OumTkhapQcXJiQLM6fLxXVzqU8+RJq2OjjVY5cFWpzDME8vqHrFBLwTJvfjN3mw"
  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-8ByNPPlpNNaWhuMeaV7ECNpG+NNGsJX736OuVIUPJyxJw9OPF3BYGF7HW4TsPxbs
browserprofiling.jssha384-AydTDEt5/1yfycgTBnoRrGiccMAi2lmVhCNfvsrHL4JhOHK48nf9PdAphavW2vsL
browserprofiling.min.jssha384-gjdo13gV6uxqPy3K35YmktYP3XPfxSW+vA/U8sIehLpx1kqznn98HpfQ8hlTtmlp
bundle.debug.min.jssha384-g5rbussL8f872+nc3+o8bJrrhXwNWv+7YLWL/yrFP/AoeRMf+lwb6KzTHUI/nK3L
bundle.feedback.debug.min.jssha384-iZF2zyN2IKEM6rJxNxM0me3aZW8v7GEide1LpYb0dnm8bSk5jiPD+xE2ydaUC92x
bundle.feedback.jssha384-zaySZSC/rmbZnEPhkQgJTANYYc7CsUGxvX/FY9fNIsHmENIp34quhDK/644h4ZOK
bundle.feedback.min.jssha384-YRG/djTdoeljYvet9Wm1Frft/4g8TK3QMsTiG/LA3enQVUY+t7b6beH5O8LhBHP8
bundle.jssha384-+ZztSpT7v3Qx1qG8nhcWd+6y6pzWpvSX3cpg8X92XrumDxQAAqe1Ktc05YUcvhPi
bundle.min.jssha384-5OumTkhapQcXJiQLM6fLxXVzqU8+RJq2OjjVY5cFWpzDME8vqHrFBLwTJvfjN3mw
bundle.replay.debug.min.jssha384-3SHI1vM1zMtxfHCZgiHPJdvtxWB+mlniKqAKneaXnblAZi52aI2wGbyLzQZ+3LEP
bundle.replay.feedback.debug.min.jssha384-NGNG8gYvrshfp6IBoEMhMReb+cIf/RooReKP3ODfKbFBEmt2Z0p3KD2kNfwwYgY8
bundle.replay.feedback.jssha384-F3usgdLhkcOUlkFkpzAX0AJFnUxiyRdt/bLC+pSyPmOy80nrl3Vym+W6KUR6Wcb4
bundle.replay.feedback.min.jssha384-/XtcoPjO+VR3Y9TOKQ5mgkfB4bOnZP/vIq0e40FgHFXMFKzb9OPiBj9oIWi9/p6V
bundle.replay.jssha384-h1ZZWpvqqIo1Zb7xAITGGR9NYU3NI09D4NtzicB1jiVIDRbU3BCiaGzf4Wc1VL4u
bundle.replay.min.jssha384-7ss7Ag0PHKSBKrSzhXn4AB//QTq2C+UwNqxe1XXwX8O8ojwnMvQRDzO8D5V7ZQlG
bundle.tracing.debug.min.jssha384-Bj6nlTP1Gc+3g91Z38WmUCs4NF1/kpufIWSQ+Ja07JUmYK283qShqzFSp7OJNEbK
bundle.tracing.jssha384-g5IeuMMFVaNygpkqqu1t14oq7NlH83qS1u1Cly98h1QrPX2LEnfs5kCDIt1aLZF5
bundle.tracing.min.jssha384-Dcw/nLAg5vuXNtxrAIf+SPSGHD0TgO9oij/RDd+gwARd2I9oOdsc8NtgRrHn2vLh
bundle.tracing.replay.debug.min.jssha384-qRg0GT4BqqBTM4kxp0oeYbzxMbwRwRWqouZh1YhsLg6Tz+Skri7us4BscphLLJt8
bundle.tracing.replay.feedback.debug.min.jssha384-yQF/ts6dRHWDsu6ybQjWLc4Q5VFNTjs9lPyxmKBjhJseqGBxkSOQZztOacdEepry
bundle.tracing.replay.feedback.jssha384-FES9lgIGYBbeZtSc45dWBbK814OGbNvQSBdRMvsVXo7v6OPXaIR5BKvK0ft+WlYE
bundle.tracing.replay.feedback.min.jssha384-XaIdryMq5f71VYvxDBy9zZQnKLIOyR47vsccplOmZ0TqcniIFwkDHJQOgWhCWY5X
bundle.tracing.replay.jssha384-0fExRzIEBXIoCQgxbsCK7XxsGGvRFnRu1acVpqOdPV5kP0FeQCmvJkNloohKh/S6
bundle.tracing.replay.min.jssha384-IYR7v4QWuGjli1forvNMayXsHaaO/CxRAVg4ebLfC465lChIIjBCCxl4KlsxkiJs
captureconsole.debug.min.jssha384-MosIMqPyBkvCuTpmJ5ZLVuccRy7eo9xzBc4IFdsAvlMSNkHAxmLRp0BBzKWo89qG
captureconsole.jssha384-2VsTuAYx8JYO12+kPoL3JoqnD+AcGKY2S0OKyK4+igCn81EVDHcR33OCgfWZHwPs
captureconsole.min.jssha384-NS2VfyBi9P2+6WiiLztpz4kJiu1Gr5O3LHw4AhhTI455GqdUKPTHhISAUuLT7mOY
contextlines.debug.min.jssha384-gqGqMXKc2qHA7/ow3LLE6djKi60y/3o0XzzAeqpVA+spvsc35UbWvaE17pDz9mOd
contextlines.jssha384-iOwTeMLQig+egn2NGp0CI0J9w4VT6YFrh1uQ9pw2JrefrKA8VHCNAfCdsb4WZOS7
contextlines.min.jssha384-FVVW/5hjxs2lCrpupsP02xiOzqTl7TUwT0US/IWq8Tzncg8495kNJxkluQdUvfiB
dedupe.debug.min.jssha384-jeOEW8UUONQSZ0ol15yRR80HXEjqld7/Dk3B8bt2L8CFckVZYHybuQ4FrYVgPU06
dedupe.jssha384-z6HuiL+d9JbxQCRuPsjWpxx/aFDait9ULnlME4PKgo4NCw7n+pciBOAEviAViUwC
dedupe.min.jssha384-B8aIYpG4rxUe1Voi/zGhayWDyLd92qO63w7yQg2OG7k8hnDcqAV7Y6E2aZuRQ/BR
extraerrordata.debug.min.jssha384-9vp6peH04n/BAvjmniMs7WwKbtVOqVgQmfxX05jJKJ1bWpIk5zf7yE54NsaltiPs
extraerrordata.jssha384-oixweBAcHfiaoNXK+PMZ96AhHp7eQkj7CkzoVBtjOTnnY1qDtHwLyIcLEmeP4iq+
extraerrordata.min.jssha384-wKquHqMhdsxCgry6dWt9qpdDjDk/0GygKsYlEZtylKEhHICraIjThlG9bDL6x00t
feedback-modal.debug.min.jssha384-abhcdGI464DoGhYfqJ30PR8T4I1RyjfENWQez+/943chg1Pd+A5Yi2goGZNF/Bt7
feedback-modal.jssha384-2NU+g+xL2WEgRKHF4EEWlIrBIw1jxoAttAeoYQw8Gxp2V5nsLxhFZA6CobLY2OhH
feedback-modal.min.jssha384-XZLQm9QnWxincDfIy+0Y8ZOpCjS2+hREEqN+6MADCt8yFT4Zy/i82DFs3FOfT11Q
feedback-screenshot.debug.min.jssha384-IFaVMQDZa2V8cmrqvxlVZ4vtrCuxcUoFiliGfo8oZ58IFEWUtDPR6IzIx3acrlk/
feedback-screenshot.jssha384-rYgHH4kjavNvWVoHSUURXxJ+UkQ2maSjuhB2jjMLrRAiiEIVBcGNsMqzKE4yXGcX
feedback-screenshot.min.jssha384-n2zT5GWSojCk/ZS9dh0+QRWeVYX/Vp9eNpIRmdS7mIMQruAQVmpmllKiPc6CfUUm
feedback.debug.min.jssha384-ZbCgfLsn8QegYGR6H8ucKhuQvN3YaK16XndGwiEzlmQ5j2IyFxeM+lPXAHuG6R9m
feedback.jssha384-Pu5JBSOsknjyVvxr5dOWGYpssTIeheKaTBZa9ccg0IH/M8TDsb8ht77thOjxJLG6
feedback.min.jssha384-s8jOBxkFpOnlQ1ijT+v3vLBGauFocLUZZ8HiwZpVn3nRz6q2C55l9tUleYqrXe4O
graphqlclient.debug.min.jssha384-Qq4PV13yLMyUjgsde5+3zr1HHpxa0dpHH7WZy/XwBuh5nvIEI8uwtLbUD8ouVRob
graphqlclient.jssha384-5bC2NCmh51EkEFP6/9KUgypmYUoA1QlfbFoQdO4JyWecJB4yJNTnpYRE/LgRm4tN
graphqlclient.min.jssha384-7Yy84TO1xmKnYhNMczuO3HXIG2XGMlw6PPvjXOyN7k3gZBaBGIzuFgSkIkpIlETc
httpclient.debug.min.jssha384-lXBdbiMc5BiUje0vYatDJ1F9ra2G3QdHXMuHNX+C1tPOTNEbO8H7lHLwJYgcI2j/
httpclient.jssha384-PwIxG8PXkXdF9860cHeSTOUkFpg1JlUBwUCPf/V241ijDiYbqXj1i3SuQaENommR
httpclient.min.jssha384-xLSA/scCWom9M5o7F4OK4JiDaotIO2h7ZK0ZnZ/Oi+Ioovg8sEZTVIgsXmebaINU
modulemetadata.debug.min.jssha384-KLCDUVGUKvB0Ynp02ZQlWZ+N55ADE9gAdPiUQj5nRyRHoqGlDH15WfJY3lzvDCBN
modulemetadata.jssha384-NWrdDaOq0nCtLdjcGBpyLTW0w60gj33oRaqLO/B5L31m70JCwNLWbwA5+SIj4XqA
modulemetadata.min.jssha384-cvGaTV+XkVZKPH3ooE2jJ0G7HBalyQki/1PMsyAaPywV2PLsr8BgZGEsang8pfc2
multiplexedtransport.debug.min.jssha384-1MDqKbL8S44ywyDIY6PmX4kz/WpzWYPtdl7rGbWXdB4qnNIRYiAG1YF3da7OXuID
multiplexedtransport.jssha384-X+9HMUvV/85W2CamlElAa6dXt+WanevjR5q90lcPBrBkdHL7bA9sgy8D1570fMcx
multiplexedtransport.min.jssha384-u5h3UcfKcwab/AvIajannNwJcEsSRhPT1tOHWq5tq9ZXBj9mPIBcagbHrUI7nKcm
replay-canvas.debug.min.jssha384-uu5vIthaGZMRVpeu4+pBNp5gUBNETYDU6xInF83SkjZOGKhPjaq/XrStc/nEvQkK
replay-canvas.jssha384-NV0mIYX0phrvp2f9iAz+kM6F3kCum29BAE/OQqzvhCqeUuqSP4l6L4YsAKDgv6ER
replay-canvas.min.jssha384-S/NaII9rVSz9+Fu7b2d8vXz0z3sOF3mTZ+StN5TqVK/qAPR5b1XSHeUcgDkZXbSS
replay.debug.min.jssha384-BsMghlr3CfmSaTX43P3lGgsTkZRN+HnjLMoWOjq0NM2CNMIFNwvgYwdFBoF4MVmf
replay.jssha384-1YghkPzGjq+bA2EN98xVbTj4X4CGwjYyxIKN7Y+UXdigGIfo1rmy4jltx1Kuopdt
replay.min.jssha384-Y/maeu8m6hAaC+4M4HXSeBT8G4EZ/nPAbzwWODlyike+vgHM3LK4JISDdSel7V80
reportingobserver.debug.min.jssha384-br5H3jhZveK4kZ/Cy135O2fcDRaaC+nXo4rEITHZpHG+3B0a92cb2a7p6gx+f/Iq
reportingobserver.jssha384-EqRPzcXQ5ULe6ukW2UMkfDBzH5bejufy+GHLqgm865b02IcIQa2AjK579KcfAYkK
reportingobserver.min.jssha384-yYFGBTi8vH7b84oyeX0ZCQWtArT6RJlblSqzfQPP6Zzm0K6AbDijMhDMElrneFTi
rewriteframes.debug.min.jssha384-ffniExO/NqdagU/0bkL/Hb07HGkVj6xlkadYNjSYwsI5QLkC4rOj7HZOPL3atUEa
rewriteframes.jssha384-PqBZeBtPYb58YHmfisavskfYrUUur5rrQQgRrP98uss867AkyS/M95jyzCLTsyDD
rewriteframes.min.jssha384-6DSACxrqsXGLuDyHumWcHUlWbKVScQBxqdEfrRAE7Uy6cYN1mkj4G5p5YqKq1VJi
spotlight.debug.min.jssha384-9ohJolKttMrosKoxReZb/zRLlQSPLp/f8bq27se3ilVD3hACwiC5p7yQKFdPxZSI
spotlight.jssha384-n6SdiwASsokuzRJItEWWVq3Hod74LosYSk3ec5QHbF7vJGtqe/clm77H/b3L23f3
spotlight.min.jssha384-xCPoQRJrwXQHc7C14OBPJh534bcq6IcdviEWq2GdwT9hUqBZADPf7oJ+z99T1qXa

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