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
12 lines
540 B
Plaintext
12 lines
540 B
Plaintext
import type { SentryBuildOptions } from './types';
|
|
/**
|
|
* This function is called by Next.js after the production build is complete.
|
|
* It is used to upload sourcemaps to Sentry.
|
|
*/
|
|
export declare function handleRunAfterProductionCompile({ releaseName, distDir, buildTool, usesNativeDebugIds, }: {
|
|
releaseName?: string;
|
|
distDir: string;
|
|
buildTool: 'webpack' | 'turbopack';
|
|
usesNativeDebugIds?: boolean;
|
|
}, sentryBuildOptions: SentryBuildOptions): Promise<void>;
|
|
//# sourceMappingURL=handleRunAfterProductionCompile.d.ts.map |