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
156 lines
7.4 KiB
Plaintext
156 lines
7.4 KiB
Plaintext
|
|
"use client";
|
|
import { consoleSandbox, GLOBAL_OBJ, applySdkMetadata, addEventProcessor, getGlobalScope } from '@sentry/core';
|
|
import { init as init$1, getDefaultIntegrations as getDefaultIntegrations$1 } from '@sentry/react';
|
|
export * from '@sentry/react';
|
|
import { DEBUG_BUILD } from '../common/debug-build.js';
|
|
import { devErrorSymbolicationEventProcessor } from '../common/devErrorSymbolicationEventProcessor.js';
|
|
import { getVercelEnv } from '../common/getVercelEnv.js';
|
|
import { isRedirectNavigationError } from '../common/nextNavigationErrorUtils.js';
|
|
import { browserTracingIntegration } from './browserTracingIntegration.js';
|
|
import { nextjsClientStackFrameNormalizationIntegration } from './clientNormalizationIntegration.js';
|
|
import { INCOMPLETE_APP_ROUTER_INSTRUMENTATION_TRANSACTION_NAME } from './routing/appRouterRoutingInstrumentation.js';
|
|
export { captureRouterTransitionStart } from './routing/appRouterRoutingInstrumentation.js';
|
|
import { removeIsrSsgTraceMetaTags } from './routing/isrRoutingTracing.js';
|
|
import { applyTunnelRouteOption } from './tunnelRoute.js';
|
|
export { wrapGetStaticPropsWithSentry } from '../common/pages-router-instrumentation/wrapGetStaticPropsWithSentry.js';
|
|
export { wrapGetInitialPropsWithSentry } from '../common/pages-router-instrumentation/wrapGetInitialPropsWithSentry.js';
|
|
export { wrapAppGetInitialPropsWithSentry } from '../common/pages-router-instrumentation/wrapAppGetInitialPropsWithSentry.js';
|
|
export { wrapDocumentGetInitialPropsWithSentry } from '../common/pages-router-instrumentation/wrapDocumentGetInitialPropsWithSentry.js';
|
|
export { wrapErrorGetInitialPropsWithSentry } from '../common/pages-router-instrumentation/wrapErrorGetInitialPropsWithSentry.js';
|
|
export { wrapGetServerSidePropsWithSentry } from '../common/pages-router-instrumentation/wrapGetServerSidePropsWithSentry.js';
|
|
export { wrapServerComponentWithSentry } from '../common/wrapServerComponentWithSentry.js';
|
|
export { wrapRouteHandlerWithSentry } from '../common/wrapRouteHandlerWithSentry.js';
|
|
export { wrapApiHandlerWithSentryVercelCrons } from '../common/pages-router-instrumentation/wrapApiHandlerWithSentryVercelCrons.js';
|
|
export { wrapMiddlewareWithSentry } from '../common/wrapMiddlewareWithSentry.js';
|
|
export { wrapPageComponentWithSentry } from '../common/pages-router-instrumentation/wrapPageComponentWithSentry.js';
|
|
export { wrapGenerationFunctionWithSentry } from '../common/wrapGenerationFunctionWithSentry.js';
|
|
export { withServerActionInstrumentation } from '../common/withServerActionInstrumentation.js';
|
|
export { captureRequestError } from '../common/captureRequestError.js';
|
|
export { captureUnderscoreErrorException } from '../common/pages-router-instrumentation/_error.js';
|
|
export { startInactiveSpan, startSpan, startSpanManual } from '../common/utils/nextSpan.js';
|
|
|
|
let clientIsInitialized = false;
|
|
|
|
const globalWithInjectedValues = GLOBAL_OBJ
|
|
|
|
;
|
|
|
|
// Treeshakable guard to remove all code related to tracing
|
|
|
|
/** Inits the Sentry NextJS SDK on the browser with the React SDK. */
|
|
function init(options) {
|
|
if (clientIsInitialized) {
|
|
consoleSandbox(() => {
|
|
// eslint-disable-next-line no-console
|
|
console.warn(
|
|
'[@sentry/nextjs] You are calling `Sentry.init()` more than once on the client. This can happen if you have both a `sentry.client.config.ts` and a `instrumentation-client.ts` file with `Sentry.init()` calls. It is recommended to call `Sentry.init()` once in `instrumentation-client.ts`.',
|
|
);
|
|
});
|
|
}
|
|
clientIsInitialized = true;
|
|
|
|
if (!DEBUG_BUILD && options.debug) {
|
|
consoleSandbox(() => {
|
|
// eslint-disable-next-line no-console
|
|
console.warn(
|
|
'[@sentry/nextjs] You have enabled `debug: true`, but Sentry debug logging was removed from your bundle (likely via `withSentryConfig({ disableLogger: true })` / `webpack.treeshake.removeDebugLogging: true`). Set that option to `false` to see Sentry debug output.',
|
|
);
|
|
});
|
|
}
|
|
|
|
// Remove cached trace meta tags for ISR/SSG pages before initializing
|
|
// This prevents the browser tracing integration from using stale trace IDs
|
|
if (typeof __SENTRY_TRACING__ === 'undefined' || __SENTRY_TRACING__) {
|
|
removeIsrSsgTraceMetaTags();
|
|
}
|
|
|
|
const opts = {
|
|
environment: getVercelEnv(true) || process.env.NODE_ENV,
|
|
defaultIntegrations: getDefaultIntegrations(options),
|
|
release: process.env._sentryRelease || globalWithInjectedValues._sentryRelease,
|
|
...options,
|
|
} ;
|
|
|
|
applyTunnelRouteOption(opts);
|
|
applySdkMetadata(opts, 'nextjs', ['nextjs', 'react']);
|
|
|
|
const client = init$1(opts);
|
|
|
|
const filterTransactions = event =>
|
|
event.type === 'transaction' && event.transaction === '/404' ? null : event;
|
|
filterTransactions.id = 'NextClient404Filter';
|
|
addEventProcessor(filterTransactions);
|
|
|
|
const filterIncompleteNavigationTransactions = event =>
|
|
event.type === 'transaction' && event.transaction === INCOMPLETE_APP_ROUTER_INSTRUMENTATION_TRANSACTION_NAME
|
|
? null
|
|
: event;
|
|
filterIncompleteNavigationTransactions.id = 'IncompleteTransactionFilter';
|
|
addEventProcessor(filterIncompleteNavigationTransactions);
|
|
|
|
const filterNextRedirectError = (event, hint) =>
|
|
isRedirectNavigationError(hint?.originalException) || event.exception?.values?.[0]?.value === 'NEXT_REDIRECT'
|
|
? null
|
|
: event;
|
|
filterNextRedirectError.id = 'NextRedirectErrorFilter';
|
|
addEventProcessor(filterNextRedirectError);
|
|
|
|
if (process.env.NODE_ENV === 'development') {
|
|
addEventProcessor(devErrorSymbolicationEventProcessor);
|
|
}
|
|
|
|
try {
|
|
// @ts-expect-error `process.turbopack` is a magic string that will be replaced by Next.js
|
|
if (process.turbopack) {
|
|
getGlobalScope().setTag('turbopack', true);
|
|
}
|
|
} catch {
|
|
// Noop
|
|
// The statement above can throw because process is not defined on the client
|
|
}
|
|
|
|
return client;
|
|
}
|
|
|
|
function getDefaultIntegrations(options) {
|
|
const customDefaultIntegrations = getDefaultIntegrations$1(options);
|
|
// This evaluates to true unless __SENTRY_TRACING__ is text-replaced with "false",
|
|
// in which case everything inside will get tree-shaken away
|
|
if (typeof __SENTRY_TRACING__ === 'undefined' || __SENTRY_TRACING__) {
|
|
customDefaultIntegrations.push(browserTracingIntegration());
|
|
}
|
|
|
|
// These values are injected at build time, based on the output directory specified in the build config. Though a default
|
|
// is set there, we set it here as well, just in case something has gone wrong with the injection.
|
|
const rewriteFramesAssetPrefixPath =
|
|
process.env._sentryRewriteFramesAssetPrefixPath ||
|
|
globalWithInjectedValues._sentryRewriteFramesAssetPrefixPath ||
|
|
'';
|
|
const assetPrefix = process.env._sentryAssetPrefix || globalWithInjectedValues._sentryAssetPrefix;
|
|
const basePath = process.env._sentryBasePath || globalWithInjectedValues._sentryBasePath;
|
|
const experimentalThirdPartyOriginStackFrames =
|
|
process.env._experimentalThirdPartyOriginStackFrames === 'true' ||
|
|
globalWithInjectedValues._experimentalThirdPartyOriginStackFrames === 'true';
|
|
customDefaultIntegrations.push(
|
|
nextjsClientStackFrameNormalizationIntegration({
|
|
assetPrefix,
|
|
basePath,
|
|
rewriteFramesAssetPrefixPath,
|
|
experimentalThirdPartyOriginStackFrames,
|
|
}),
|
|
);
|
|
|
|
return customDefaultIntegrations;
|
|
}
|
|
|
|
/**
|
|
* Just a passthrough in case this is imported from the client.
|
|
*/
|
|
function withSentryConfig(exportedUserNextConfig) {
|
|
return exportedUserNextConfig;
|
|
}
|
|
|
|
export { browserTracingIntegration, init, withSentryConfig };
|
|
//# sourceMappingURL=index.js.map
|