Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
20 lines
386 B
Plaintext
20 lines
386 B
Plaintext
import { setContext, init as init$1 } from '@sentry/browser';
|
|
import { applySdkMetadata } from '@sentry/core';
|
|
import { version } from 'react';
|
|
|
|
/**
|
|
* Inits the React SDK
|
|
*/
|
|
function init(options) {
|
|
const opts = {
|
|
...options,
|
|
};
|
|
|
|
applySdkMetadata(opts, 'react');
|
|
setContext('react', { version });
|
|
return init$1(opts);
|
|
}
|
|
|
|
export { init };
|
|
//# sourceMappingURL=sdk.js.map
|