123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- Object.defineProperty(exports, '__esModule', { value: true });
- const index = require('./client/index.js');
- const nextRoutingInstrumentation = require('./client/routing/nextRoutingInstrumentation.js');
- const _error = require('./common/_error.js');
- const browserTracingIntegration = require('./client/browserTracingIntegration.js');
- const wrapGetStaticPropsWithSentry = require('./common/wrapGetStaticPropsWithSentry.js');
- const wrapGetInitialPropsWithSentry = require('./common/wrapGetInitialPropsWithSentry.js');
- const wrapAppGetInitialPropsWithSentry = require('./common/wrapAppGetInitialPropsWithSentry.js');
- const wrapDocumentGetInitialPropsWithSentry = require('./common/wrapDocumentGetInitialPropsWithSentry.js');
- const wrapErrorGetInitialPropsWithSentry = require('./common/wrapErrorGetInitialPropsWithSentry.js');
- const wrapGetServerSidePropsWithSentry = require('./common/wrapGetServerSidePropsWithSentry.js');
- const wrapServerComponentWithSentry = require('./common/wrapServerComponentWithSentry.js');
- const wrapRouteHandlerWithSentry = require('./common/wrapRouteHandlerWithSentry.js');
- const wrapApiHandlerWithSentryVercelCrons = require('./common/wrapApiHandlerWithSentryVercelCrons.js');
- const wrapMiddlewareWithSentry = require('./common/wrapMiddlewareWithSentry.js');
- const wrapPageComponentWithSentry = require('./common/wrapPageComponentWithSentry.js');
- const wrapGenerationFunctionWithSentry = require('./common/wrapGenerationFunctionWithSentry.js');
- const withServerActionInstrumentation = require('./common/withServerActionInstrumentation.js');
- const react = require('@sentry/react');
- const rewriteFramesIntegration = require('./client/rewriteFramesIntegration.js');
- // This file is the main entrypoint for non-Next.js build pipelines that use
- // the package.json's "browser" field or the Edge runtime (Edge API routes and middleware)
- /**
- * This const serves no purpose besides being an identifier for this file that the SDK multiplexer loader can use to
- * determine that this is in fact a file that wants to be multiplexed.
- */
- const _SENTRY_SDK_MULTIPLEXER = true;
- exports.Integrations = index.Integrations;
- exports.init = index.init;
- exports.withSentryConfig = index.withSentryConfig;
- exports.nextRouterInstrumentation = nextRoutingInstrumentation.nextRouterInstrumentation;
- exports.captureUnderscoreErrorException = _error.captureUnderscoreErrorException;
- exports.BrowserTracing = browserTracingIntegration.BrowserTracing;
- exports.browserTracingIntegration = browserTracingIntegration.browserTracingIntegration;
- exports.withSentryGetStaticProps = wrapGetStaticPropsWithSentry.withSentryGetStaticProps;
- exports.wrapGetStaticPropsWithSentry = wrapGetStaticPropsWithSentry.wrapGetStaticPropsWithSentry;
- exports.withSentryServerSideGetInitialProps = wrapGetInitialPropsWithSentry.withSentryServerSideGetInitialProps;
- exports.wrapGetInitialPropsWithSentry = wrapGetInitialPropsWithSentry.wrapGetInitialPropsWithSentry;
- exports.withSentryServerSideAppGetInitialProps = wrapAppGetInitialPropsWithSentry.withSentryServerSideAppGetInitialProps;
- exports.wrapAppGetInitialPropsWithSentry = wrapAppGetInitialPropsWithSentry.wrapAppGetInitialPropsWithSentry;
- exports.withSentryServerSideDocumentGetInitialProps = wrapDocumentGetInitialPropsWithSentry.withSentryServerSideDocumentGetInitialProps;
- exports.wrapDocumentGetInitialPropsWithSentry = wrapDocumentGetInitialPropsWithSentry.wrapDocumentGetInitialPropsWithSentry;
- exports.withSentryServerSideErrorGetInitialProps = wrapErrorGetInitialPropsWithSentry.withSentryServerSideErrorGetInitialProps;
- exports.wrapErrorGetInitialPropsWithSentry = wrapErrorGetInitialPropsWithSentry.wrapErrorGetInitialPropsWithSentry;
- exports.withSentryGetServerSideProps = wrapGetServerSidePropsWithSentry.withSentryGetServerSideProps;
- exports.wrapGetServerSidePropsWithSentry = wrapGetServerSidePropsWithSentry.wrapGetServerSidePropsWithSentry;
- exports.wrapServerComponentWithSentry = wrapServerComponentWithSentry.wrapServerComponentWithSentry;
- exports.wrapRouteHandlerWithSentry = wrapRouteHandlerWithSentry.wrapRouteHandlerWithSentry;
- exports.wrapApiHandlerWithSentryVercelCrons = wrapApiHandlerWithSentryVercelCrons.wrapApiHandlerWithSentryVercelCrons;
- exports.wrapMiddlewareWithSentry = wrapMiddlewareWithSentry.wrapMiddlewareWithSentry;
- exports.wrapPageComponentWithSentry = wrapPageComponentWithSentry.wrapPageComponentWithSentry;
- exports.wrapGenerationFunctionWithSentry = wrapGenerationFunctionWithSentry.wrapGenerationFunctionWithSentry;
- exports.withServerActionInstrumentation = withServerActionInstrumentation.withServerActionInstrumentation;
- exports.rewriteFramesIntegration = rewriteFramesIntegration.rewriteFramesIntegration;
- exports._SENTRY_SDK_MULTIPLEXER = _SENTRY_SDK_MULTIPLEXER;
- for (const k in react) {
- if (k !== 'default' && !exports.hasOwnProperty(k)) exports[k] = react[k];
- }
- //# sourceMappingURL=index.client.js.map
|