{"version":3,"sources":["../../src/export/worker.ts"],"sourcesContent":["import type {\n  ExportPagesInput,\n  ExportPageInput,\n  ExportPageResult,\n  ExportRouteResult,\n  WorkerRenderOpts,\n  ExportPagesResult,\n  ExportPathEntry,\n} from './types'\nimport type { AppPageModule } from '../server/route-modules/app-page/module'\nimport type { PagesModule } from '../server/route-modules/pages/module.compiled'\n\nimport '../server/node-environment'\nimport { installBindings } from '../build/swc/install-bindings'\nimport { installCodeFrameSupport } from '../server/lib/install-code-frame'\n\nprocess.env.NEXT_IS_EXPORT_WORKER = 'true'\n\nimport { extname, join, dirname, sep } from 'path'\nimport fs from 'fs/promises'\nimport { loadComponents } from '../server/load-components'\nimport { isDynamicRoute } from '../shared/lib/router/utils/is-dynamic'\nimport { normalizePagePath } from '../shared/lib/page-path/normalize-page-path'\nimport { normalizeLocalePath } from '../shared/lib/i18n/normalize-locale-path'\nimport { trace } from '../trace'\nimport { setHttpClientAndAgentOptions } from '../server/setup-http-agent-env'\nimport { addRequestMeta } from '../server/request-meta'\nimport { normalizeAppPath } from '../shared/lib/router/utils/app-paths'\nimport { removeTrailingSlash } from '../shared/lib/router/utils/remove-trailing-slash'\n\nimport { createRequestResponseMocks } from '../server/lib/mock-request'\nimport { isAppRouteRoute } from '../lib/is-app-route-route'\nimport { hasNextSupport } from '../server/ci-info'\nimport { exportAppRoute } from './routes/app-route'\nimport { exportAppPage } from './routes/app-page'\nimport { exportPagesPage } from './routes/pages'\nimport { getParams } from './helpers/get-params'\nimport { createIncrementalCache } from './helpers/create-incremental-cache'\nimport { isPostpone } from '../server/lib/router-utils/is-postpone'\nimport { isDynamicUsageError } from './helpers/is-dynamic-usage-error'\nimport { isBailoutToCSRError } from '../shared/lib/lazy-dynamic/bailout-to-csr'\nimport {\n  turborepoTraceAccess,\n  TurborepoAccessTraceResult,\n} from '../build/turborepo-access-trace'\nimport type { Params } from '../server/request/params'\nimport {\n  createOpaqueFallbackRouteParams,\n  type OpaqueFallbackRouteParams,\n} from '../server/request/fallback-params'\nimport { needsExperimentalReact } from '../lib/needs-experimental-react'\nimport type { AppRouteRouteModule } from '../server/route-modules/app-route/module.compiled'\nimport { isStaticGenBailoutError } from '../client/components/static-generation-bailout'\nimport type { PagesRenderContext, PagesSharedContext } from '../server/render'\nimport type { AppSharedContext } from '../server/app-render/app-render'\nimport { MultiFileWriter } from '../lib/multi-file-writer'\nimport { createRenderResumeDataCache } from '../server/resume-data-cache/resume-data-cache'\nimport { installGlobalBehaviors } from '../server/node-environment-extensions/global-behaviors'\n;(globalThis as any).__NEXT_DATA__ = {\n  nextExport: true,\n}\n\nclass TimeoutError extends Error {\n  code = 'NEXT_EXPORT_TIMEOUT_ERROR'\n}\n\nclass ExportPageError extends Error {\n  code = 'NEXT_EXPORT_PAGE_ERROR'\n}\n\nasync function exportPageImpl(\n  input: ExportPageInput,\n  fileWriter: MultiFileWriter\n): Promise<ExportRouteResult | undefined> {\n  const {\n    exportPath,\n    distDir,\n    pagesDataDir,\n    buildExport = false,\n    subFolders = false,\n    optimizeCss,\n    disableOptimizedLoading,\n    debugOutput = false,\n    enableExperimentalReact,\n    trailingSlash,\n    sriEnabled,\n    renderOpts: commonRenderOpts,\n    outDir: commonOutDir,\n    buildId,\n    deploymentId,\n    clientAssetToken,\n    renderResumeDataCache,\n  } = input\n\n  if (enableExperimentalReact) {\n    process.env.__NEXT_EXPERIMENTAL_REACT = 'true'\n  }\n\n  const {\n    path,\n    page,\n\n    // The parameters that are currently unknown.\n    _fallbackRouteParams = [],\n\n    // Check if this is an `app/` page.\n    _isAppDir: isAppDir = false,\n\n    // Check if this should error when dynamic usage is detected.\n    _isDynamicError: isDynamicError = false,\n\n    // If this page supports partial prerendering, then we need to pass that to\n    // the renderOpts.\n    _isRoutePPREnabled: isRoutePPREnabled,\n\n    // Configure the rendering of the page to allow that an empty static shell\n    // is generated while rendering using PPR and Cache Components.\n    _allowEmptyStaticShell: allowEmptyStaticShell = false,\n\n    // When true, attempt to run build-time instant validation for this export path.\n    _runInstantValidation: runInstantValidation = false,\n\n    // Pull the original query out.\n    query: originalQuery = {},\n  } = exportPath\n\n  const fallbackRouteParams: OpaqueFallbackRouteParams | null =\n    createOpaqueFallbackRouteParams(_fallbackRouteParams)\n\n  let query = { ...originalQuery }\n  const pathname = normalizeAppPath(page)\n  const isDynamic = isDynamicRoute(page)\n  const outDir = isAppDir ? join(distDir, 'server/app') : commonOutDir\n\n  const filePath = normalizePagePath(path)\n\n  let updatedPath = exportPath._ssgPath || path\n  let locale = exportPath._locale || commonRenderOpts.locale\n\n  if (commonRenderOpts.locale) {\n    const localePathResult = normalizeLocalePath(path, commonRenderOpts.locales)\n\n    if (localePathResult.detectedLocale) {\n      updatedPath = localePathResult.pathname\n      locale = localePathResult.detectedLocale\n    }\n  }\n\n  // We need to show a warning if they try to provide query values\n  // for an auto-exported page since they won't be available\n  const hasOrigQueryValues = Object.keys(originalQuery).length > 0\n\n  // Check if the page is a specified dynamic route\n  const { pathname: nonLocalizedPath } = normalizeLocalePath(\n    path,\n    commonRenderOpts.locales\n  )\n\n  let params: Params | undefined\n\n  if (isDynamic && page !== nonLocalizedPath) {\n    const normalizedPage = isAppDir ? normalizeAppPath(page) : page\n\n    params = getParams(normalizedPage, updatedPath)\n  }\n\n  const { req, res } = createRequestResponseMocks({ url: updatedPath })\n\n  // If this is a status code page, then set the response code.\n  for (const statusCode of [404, 500]) {\n    if (\n      [\n        `/${statusCode}`,\n        `/${statusCode}.html`,\n        `/${statusCode}/index.html`,\n      ].some((p) => p === updatedPath || `/${locale}${p}` === updatedPath)\n    ) {\n      res.statusCode = statusCode\n    }\n  }\n\n  // Ensure that the URL has a trailing slash if it's configured.\n  if (trailingSlash && !req.url?.endsWith('/')) {\n    req.url += '/'\n  }\n\n  // Set the resolved pathname without trailing slash as request metadata.\n  addRequestMeta(req, 'resolvedPathname', removeTrailingSlash(updatedPath))\n\n  if (\n    locale &&\n    buildExport &&\n    commonRenderOpts.domainLocales &&\n    commonRenderOpts.domainLocales.some(\n      (dl) => dl.defaultLocale === locale || dl.locales?.includes(locale || '')\n    )\n  ) {\n    addRequestMeta(req, 'isLocaleDomain', true)\n  }\n\n  const getHtmlFilename = (p: string) =>\n    subFolders ? `${p}${sep}index.html` : `${p}.html`\n\n  let htmlFilename = getHtmlFilename(filePath)\n\n  // dynamic routes can provide invalid extensions e.g. /blog/[...slug] returns an\n  // extension of `.slug]`\n  const pageExt = isDynamic || isAppDir ? '' : extname(page)\n  const pathExt = isDynamic || isAppDir ? '' : extname(path)\n\n  // force output 404.html for backwards compat\n  if (path === '/404.html') {\n    htmlFilename = path\n  }\n  // Make sure page isn't a folder with a dot in the name e.g. `v1.2`\n  else if (pageExt !== pathExt && pathExt !== '') {\n    const isBuiltinPaths = ['/500', '/404'].some(\n      (p) => p === path || p === path + '.html'\n    )\n    // If the ssg path has .html extension, and it's not builtin paths, use it directly\n    // Otherwise, use that as the filename instead\n    const isHtmlExtPath = !isBuiltinPaths && path.endsWith('.html')\n    htmlFilename = isHtmlExtPath ? getHtmlFilename(path) : path\n  } else if (path === '/') {\n    // If the path is the root, just use index.html\n    htmlFilename = 'index.html'\n  }\n\n  const baseDir = join(outDir, dirname(htmlFilename))\n  let htmlFilepath = join(outDir, htmlFilename)\n\n  await fs.mkdir(baseDir, { recursive: true })\n\n  const components = await loadComponents({\n    distDir,\n    page,\n    isAppPath: isAppDir,\n    isDev: false,\n    sriEnabled,\n    needsManifestsForLegacyReasons: true,\n  })\n\n  // Handle App Routes.\n  if (isAppDir && isAppRouteRoute(page)) {\n    return exportAppRoute(\n      req,\n      res,\n      params,\n      page,\n      components.routeModule as AppRouteRouteModule,\n      commonRenderOpts.incrementalCache,\n      commonRenderOpts.cacheLifeProfiles,\n      htmlFilepath,\n      fileWriter,\n      commonRenderOpts.cacheComponents,\n      commonRenderOpts.experimental,\n      buildId,\n      deploymentId\n    )\n  }\n\n  const renderOpts: WorkerRenderOpts = {\n    ...components,\n    ...commonRenderOpts,\n    params,\n    optimizeCss,\n    disableOptimizedLoading,\n    locale,\n    supportsDynamicResponse: false,\n    // During the export phase in next build, we always enable the streaming metadata since if there's\n    // any dynamic access in metadata we can determine it in the build phase.\n    // If it's static, then it won't affect anything.\n    // If it's dynamic, then it can be handled when request hits the route.\n    serveStreamingMetadata: true,\n    allowEmptyStaticShell,\n    runInstantValidation,\n    experimental: {\n      ...commonRenderOpts.experimental,\n      isRoutePPREnabled,\n    },\n    renderResumeDataCache,\n  }\n\n  // Handle App Pages\n  if (isAppDir) {\n    const sharedContext: AppSharedContext = {\n      buildId,\n      deploymentId,\n      clientAssetToken,\n    }\n\n    return exportAppPage(\n      req,\n      res,\n      page,\n      path,\n      pathname,\n      query,\n      fallbackRouteParams,\n      renderOpts as WorkerRenderOpts<AppPageModule>,\n      htmlFilepath,\n      debugOutput,\n      isDynamicError,\n      fileWriter,\n      sharedContext\n    )\n  } else {\n    const sharedContext: PagesSharedContext = {\n      buildId,\n      deploymentId,\n      clientAssetToken,\n      customServer: undefined,\n    }\n\n    const renderContext: PagesRenderContext = {\n      isFallback: exportPath._pagesFallback ?? false,\n      isDraftMode: false,\n      developmentNotFoundSourcePage: undefined,\n    }\n\n    return exportPagesPage(\n      req,\n      res,\n      path,\n      page,\n      query,\n      params,\n      htmlFilepath,\n      htmlFilename,\n      pagesDataDir,\n      buildExport,\n      isDynamic,\n      sharedContext,\n      renderContext,\n      hasOrigQueryValues,\n      renderOpts as WorkerRenderOpts<PagesModule>,\n      components,\n      fileWriter\n    )\n  }\n}\n\nexport async function exportPages(\n  input: ExportPagesInput\n): Promise<ExportPagesResult> {\n  // Load native bindings in the worker process so that code frame rendering\n  // (which uses the native codeFrameColumns function) works during prerendering.\n  await installBindings()\n  installCodeFrameSupport()\n\n  const {\n    exportPaths,\n    dir,\n    distDir,\n    outDir,\n    cacheHandler,\n    cacheMaxMemorySize,\n    fetchCacheKeyPrefix,\n    pagesDataDir,\n    renderOpts,\n    nextConfig,\n    options,\n    renderResumeDataCachesByPage = {},\n  } = input\n\n  installGlobalBehaviors(nextConfig)\n\n  if (nextConfig.enablePrerenderSourceMaps) {\n    try {\n      // Same as `next dev`\n      // Limiting the stack trace to a useful amount of frames is handled by ignore-listing.\n      // TODO: How high can we go without severely impacting CPU/memory?\n      Error.stackTraceLimit = 50\n    } catch {}\n  }\n\n  // If the fetch cache was enabled, we need to create an incremental\n  // cache instance for this page.\n  const incrementalCache = await createIncrementalCache({\n    cacheHandler,\n    cacheMaxMemorySize,\n    fetchCacheKeyPrefix,\n    distDir,\n    dir,\n    // skip writing to disk in minimal mode for now, pending some\n    // changes to better support it\n    flushToDisk: !hasNextSupport,\n    cacheHandlers: nextConfig.cacheHandlers,\n  })\n\n  renderOpts.incrementalCache = incrementalCache\n\n  const maxConcurrency =\n    nextConfig.experimental.staticGenerationMaxConcurrency ?? 8\n  const results: ExportPagesResult = []\n\n  const exportPageWithRetry = async (\n    exportPath: ExportPathEntry,\n    maxAttempts: number\n  ) => {\n    const { page, path } = exportPath\n    const pageKey = page !== path ? `${page}: ${path}` : path\n    let attempt = 0\n    let result\n\n    const hasDebuggerAttached =\n      // Also tests for `inspect-brk`\n      process.env.NODE_OPTIONS?.includes('--inspect')\n\n    const renderResumeDataCache = renderResumeDataCachesByPage[pageKey]\n      ? createRenderResumeDataCache(\n          renderResumeDataCachesByPage[pageKey],\n          renderOpts.experimental.maxPostponedStateSizeBytes\n        )\n      : undefined\n\n    while (attempt < maxAttempts) {\n      try {\n        result = await Promise.race<ExportPageResult | undefined>([\n          exportPage({\n            exportPath,\n            distDir,\n            outDir,\n            pagesDataDir,\n            renderOpts,\n            trailingSlash: nextConfig.trailingSlash,\n            subFolders: nextConfig.trailingSlash && !options.buildExport,\n            buildExport: options.buildExport,\n            optimizeCss: nextConfig.experimental.optimizeCss,\n            disableOptimizedLoading:\n              nextConfig.experimental.disableOptimizedLoading,\n            parentSpanId: input.parentSpanId,\n            httpAgentOptions: nextConfig.httpAgentOptions,\n            debugOutput: options.debugOutput,\n            enableExperimentalReact: needsExperimentalReact(nextConfig),\n            sriEnabled: Boolean(nextConfig.experimental.sri?.algorithm),\n            buildId: input.buildId,\n            deploymentId: input.deploymentId,\n            clientAssetToken: input.clientAssetToken,\n            renderResumeDataCache,\n          }),\n          hasDebuggerAttached\n            ? // With a debugger attached, exporting can take infinitely if we paused script execution.\n              new Promise(() => {})\n            : // If exporting the page takes longer than the timeout, reject the promise.\n              new Promise((_, reject) => {\n                setTimeout(() => {\n                  reject(new TimeoutError())\n                }, nextConfig.staticPageGenerationTimeout * 1000)\n              }),\n        ])\n\n        // If there was an error in the export, throw it immediately. In the catch block, we might retry the export,\n        // or immediately fail the build, depending on user configuration. We might also continue on and attempt other pages.\n        if (result && 'error' in result) {\n          throw new ExportPageError()\n        }\n\n        // If the export succeeds, break out of the retry loop\n        break\n      } catch (err) {\n        // The only error that should be caught here is an ExportError, as `exportPage` doesn't throw and instead returns an object with an `error` property.\n        // This is an overly cautious check to ensure that we don't accidentally catch an unexpected error.\n        if (!(err instanceof ExportPageError || err instanceof TimeoutError)) {\n          throw err\n        }\n\n        if (err instanceof TimeoutError) {\n          // If the export times out, we will restart the worker up to 3 times.\n          maxAttempts = 3\n        }\n\n        // We've reached the maximum number of attempts\n        if (attempt >= maxAttempts - 1) {\n          // Log a message if we've reached the maximum number of attempts.\n          // We only care to do this if maxAttempts was configured.\n          if (maxAttempts > 1) {\n            console.info(\n              `Failed to build ${pageKey} after ${maxAttempts} attempts.`\n            )\n          }\n          // If prerenderEarlyExit is enabled, we'll exit the build immediately.\n          if (nextConfig.experimental.prerenderEarlyExit) {\n            console.error(\n              `Export encountered an error on ${pageKey}, exiting the build.`\n            )\n            process.exit(1)\n          } else {\n            // Otherwise, this is a no-op. The build will continue, and a summary of failed pages will be displayed at the end.\n          }\n        } else {\n          // Otherwise, we have more attempts to make. Wait before retrying\n          if (err instanceof TimeoutError) {\n            console.info(\n              `Failed to build ${pageKey} (attempt ${attempt + 1} of ${maxAttempts}) because it took more than ${nextConfig.staticPageGenerationTimeout} seconds. Retrying again shortly.`\n            )\n          } else {\n            console.info(\n              `Failed to build ${pageKey} (attempt ${attempt + 1} of ${maxAttempts}). Retrying again shortly.`\n            )\n          }\n\n          // Exponential backoff with random jitter to avoid thundering herd on retries\n          const baseDelay = 500 // 500ms\n          const maxDelay = 2000 // 2 seconds\n          const delay = Math.min(baseDelay * Math.pow(2, attempt), maxDelay)\n          const jitter = Math.random() * 0.3 * delay // Add up to 30% random jitter\n          await new Promise((r) => setTimeout(r, delay + jitter))\n        }\n      }\n\n      attempt++\n    }\n\n    return { result, path, page, pageKey }\n  }\n\n  for (let i = 0; i < exportPaths.length; i += maxConcurrency) {\n    const subset = exportPaths.slice(i, i + maxConcurrency)\n\n    const subsetResults = await Promise.all(\n      subset.map((exportPath) =>\n        exportPageWithRetry(\n          exportPath,\n          nextConfig.experimental.staticGenerationRetryCount ?? 1\n        )\n      )\n    )\n\n    results.push(...subsetResults)\n  }\n\n  return results\n}\n\nasync function exportPage(\n  input: ExportPageInput\n): Promise<ExportPageResult | undefined> {\n  trace('export-page', input.parentSpanId).setAttribute(\n    'path',\n    input.exportPath.path\n  )\n\n  // Configure the http agent.\n  setHttpClientAndAgentOptions({\n    httpAgentOptions: input.httpAgentOptions,\n  })\n\n  const fileWriter = new MultiFileWriter({\n    writeFile: (filePath, data) => fs.writeFile(filePath, data),\n    mkdir: (dir) => fs.mkdir(dir, { recursive: true }),\n  })\n\n  const exportPageSpan = trace('export-page-worker', input.parentSpanId)\n\n  const start = Date.now()\n\n  const turborepoAccessTraceResult = new TurborepoAccessTraceResult()\n\n  // Export the page.\n  let result: ExportRouteResult | undefined\n  try {\n    result = await exportPageSpan.traceAsyncFn(() =>\n      turborepoTraceAccess(\n        () => exportPageImpl(input, fileWriter),\n        turborepoAccessTraceResult\n      )\n    )\n\n    // Wait for all the files to flush to disk.\n    await fileWriter.wait()\n\n    // If there was no result, then we can exit early.\n    if (!result) return\n\n    // If there was an error, then we can exit early.\n    if ('error' in result) {\n      return { error: result.error, duration: Date.now() - start }\n    }\n  } catch (err) {\n    console.error(\n      `Error occurred prerendering page \"${input.exportPath.path}\". Read more: https://nextjs.org/docs/messages/prerender-error`\n    )\n\n    // bailoutToCSRError errors should not leak to the user as they are not actionable; they're\n    // a framework signal\n    if (!isBailoutToCSRError(err)) {\n      // A static generation bailout error is a framework signal to fail static generation but\n      // and will encode a reason in the error message. If there is a message, we'll print it.\n      // Otherwise there's nothing to show as we don't want to leak an error internal error stack to the user.\n      // TODO: Always log the full error. ignore-listing will take care of hiding internal stacks.\n      if (isStaticGenBailoutError(err)) {\n        if (err.message) {\n          console.error(`Error: ${err.message}`)\n        }\n      } else {\n        console.error(err)\n      }\n    }\n\n    return { error: true, duration: Date.now() - start }\n  }\n\n  // Notify the parent process that we processed a page (used by the progress activity indicator)\n  process.send?.([3, { type: 'activity' }])\n\n  // Otherwise we can return the result.\n  return {\n    ...result,\n    duration: Date.now() - start,\n    turborepoAccessTraceResult: turborepoAccessTraceResult.serialize(),\n  }\n}\n\nprocess.on('unhandledRejection', (err: unknown) => {\n  // if it's a postpone error, it'll be handled later\n  // when the postponed promise is actually awaited.\n  if (isPostpone(err)) {\n    return\n  }\n\n  // we don't want to log these errors\n  if (isDynamicUsageError(err)) {\n    return\n  }\n\n  console.error(err)\n})\n\nprocess.on('rejectionHandled', () => {\n  // It is ok to await a Promise late in Next.js as it allows for better\n  // prefetching patterns to avoid waterfalls. We ignore logging these.\n  // We should've already errored in anyway unhandledRejection.\n})\n\nconst FATAL_UNHANDLED_NEXT_API_EXIT_CODE = 78\n\nprocess.on('uncaughtException', (err) => {\n  if (isDynamicUsageError(err)) {\n    console.error(\n      'A Next.js API that uses exceptions to signal framework behavior was uncaught. This suggests improper usage of a Next.js API. The original error is printed below and the build will now exit.'\n    )\n    console.error(err)\n    process.exit(FATAL_UNHANDLED_NEXT_API_EXIT_CODE)\n  } else {\n    console.error(err)\n  }\n})\n"],"names":["exportPages","process","env","NEXT_IS_EXPORT_WORKER","globalThis","__NEXT_DATA__","nextExport","TimeoutError","Error","code","ExportPageError","exportPageImpl","input","fileWriter","req","exportPath","distDir","pagesDataDir","buildExport","subFolders","optimizeCss","disableOptimizedLoading","debugOutput","enableExperimentalReact","trailingSlash","sriEnabled","renderOpts","commonRenderOpts","outDir","commonOutDir","buildId","deploymentId","clientAssetToken","renderResumeDataCache","__NEXT_EXPERIMENTAL_REACT","path","page","_fallbackRouteParams","_isAppDir","isAppDir","_isDynamicError","isDynamicError","_isRoutePPREnabled","isRoutePPREnabled","_allowEmptyStaticShell","allowEmptyStaticShell","_runInstantValidation","runInstantValidation","query","originalQuery","fallbackRouteParams","createOpaqueFallbackRouteParams","pathname","normalizeAppPath","isDynamic","isDynamicRoute","join","filePath","normalizePagePath","updatedPath","_ssgPath","locale","_locale","localePathResult","normalizeLocalePath","locales","detectedLocale","hasOrigQueryValues","Object","keys","length","nonLocalizedPath","params","normalizedPage","getParams","res","createRequestResponseMocks","url","statusCode","some","p","endsWith","addRequestMeta","removeTrailingSlash","domainLocales","dl","defaultLocale","includes","getHtmlFilename","sep","htmlFilename","pageExt","extname","pathExt","isBuiltinPaths","isHtmlExtPath","baseDir","dirname","htmlFilepath","fs","mkdir","recursive","components","loadComponents","isAppPath","isDev","needsManifestsForLegacyReasons","isAppRouteRoute","exportAppRoute","routeModule","incrementalCache","cacheLifeProfiles","cacheComponents","experimental","supportsDynamicResponse","serveStreamingMetadata","sharedContext","exportAppPage","customServer","undefined","renderContext","isFallback","_pagesFallback","isDraftMode","developmentNotFoundSourcePage","exportPagesPage","installBindings","installCodeFrameSupport","exportPaths","dir","cacheHandler","cacheMaxMemorySize","fetchCacheKeyPrefix","nextConfig","options","renderResumeDataCachesByPage","installGlobalBehaviors","enablePrerenderSourceMaps","stackTraceLimit","createIncrementalCache","flushToDisk","hasNextSupport","cacheHandlers","maxConcurrency","staticGenerationMaxConcurrency","results","exportPageWithRetry","maxAttempts","pageKey","attempt","result","hasDebuggerAttached","NODE_OPTIONS","createRenderResumeDataCache","maxPostponedStateSizeBytes","Promise","race","exportPage","parentSpanId","httpAgentOptions","needsExperimentalReact","Boolean","sri","algorithm","_","reject","setTimeout","staticPageGenerationTimeout","err","console","info","prerenderEarlyExit","error","exit","baseDelay","maxDelay","delay","Math","min","pow","jitter","random","r","i","subset","slice","subsetResults","all","map","staticGenerationRetryCount","push","trace","setAttribute","setHttpClientAndAgentOptions","MultiFileWriter","writeFile","data","exportPageSpan","start","Date","now","turborepoAccessTraceResult","TurborepoAccessTraceResult","traceAsyncFn","turborepoTraceAccess","wait","duration","isBailoutToCSRError","isStaticGenBailoutError","message","send","type","serialize","on","isPostpone","isDynamicUsageError","FATAL_UNHANDLED_NEXT_API_EXIT_CODE"],"mappings":"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","ignoreList":[0]}