sdk.js 361 B

1234567891011121314151617181920
  1. Object.defineProperty(exports, '__esModule', { value: true });
  2. const browser = require('@sentry/browser');
  3. const core = require('@sentry/core');
  4. /**
  5. * Inits the React SDK
  6. */
  7. function init(options) {
  8. const opts = {
  9. ...options,
  10. };
  11. core.applySdkMetadata(opts, 'react');
  12. browser.init(opts);
  13. }
  14. exports.init = init;
  15. //# sourceMappingURL=sdk.js.map