index.client.js 2.3 KB

12345678910111213141516171819202122232425262728293031
  1. export { Integrations, init, withSentryConfig } from './client/index.js';
  2. export { nextRouterInstrumentation } from './client/routing/nextRoutingInstrumentation.js';
  3. export { captureUnderscoreErrorException } from './common/_error.js';
  4. export { BrowserTracing, browserTracingIntegration } from './client/browserTracingIntegration.js';
  5. export { withSentryGetStaticProps, wrapGetStaticPropsWithSentry } from './common/wrapGetStaticPropsWithSentry.js';
  6. export { withSentryServerSideGetInitialProps, wrapGetInitialPropsWithSentry } from './common/wrapGetInitialPropsWithSentry.js';
  7. export { withSentryServerSideAppGetInitialProps, wrapAppGetInitialPropsWithSentry } from './common/wrapAppGetInitialPropsWithSentry.js';
  8. export { withSentryServerSideDocumentGetInitialProps, wrapDocumentGetInitialPropsWithSentry } from './common/wrapDocumentGetInitialPropsWithSentry.js';
  9. export { withSentryServerSideErrorGetInitialProps, wrapErrorGetInitialPropsWithSentry } from './common/wrapErrorGetInitialPropsWithSentry.js';
  10. export { withSentryGetServerSideProps, wrapGetServerSidePropsWithSentry } from './common/wrapGetServerSidePropsWithSentry.js';
  11. export { wrapServerComponentWithSentry } from './common/wrapServerComponentWithSentry.js';
  12. export { wrapRouteHandlerWithSentry } from './common/wrapRouteHandlerWithSentry.js';
  13. export { wrapApiHandlerWithSentryVercelCrons } from './common/wrapApiHandlerWithSentryVercelCrons.js';
  14. export { wrapMiddlewareWithSentry } from './common/wrapMiddlewareWithSentry.js';
  15. export { wrapPageComponentWithSentry } from './common/wrapPageComponentWithSentry.js';
  16. export { wrapGenerationFunctionWithSentry } from './common/wrapGenerationFunctionWithSentry.js';
  17. export { withServerActionInstrumentation } from './common/withServerActionInstrumentation.js';
  18. export * from '@sentry/react';
  19. export { rewriteFramesIntegration } from './client/rewriteFramesIntegration.js';
  20. // This file is the main entrypoint for non-Next.js build pipelines that use
  21. // the package.json's "browser" field or the Edge runtime (Edge API routes and middleware)
  22. /**
  23. * This const serves no purpose besides being an identifier for this file that the SDK multiplexer loader can use to
  24. * determine that this is in fact a file that wants to be multiplexed.
  25. */
  26. const _SENTRY_SDK_MULTIPLEXER = true;
  27. export { _SENTRY_SDK_MULTIPLEXER };
  28. //# sourceMappingURL=index.client.js.map