| | import type { |
| | ExportAppResult, |
| | ExportAppOptions, |
| | WorkerRenderOptsPartial, |
| | ExportPagesResult, |
| | ExportPathEntry, |
| | } from './types' |
| | import { |
| | createStaticWorker, |
| | type PrerenderManifest, |
| | type StaticWorker, |
| | } from '../build' |
| | import type { PagesManifest } from '../build/webpack/plugins/pages-manifest-plugin' |
| |
|
| | import { bold, yellow } from '../lib/picocolors' |
| | import findUp from 'next/dist/compiled/find-up' |
| | import { existsSync, promises as fs } from 'fs' |
| |
|
| | import '../server/require-hook' |
| |
|
| | import { dirname, join, resolve, sep, relative } from 'path' |
| | import { formatAmpMessages } from '../build/output/index' |
| | import type { AmpPageStatus } from '../build/output/index' |
| | import * as Log from '../build/output/log' |
| | import { |
| | RSC_SEGMENT_SUFFIX, |
| | RSC_SEGMENTS_DIR_SUFFIX, |
| | RSC_SUFFIX, |
| | SSG_FALLBACK_EXPORT_ERROR, |
| | } from '../lib/constants' |
| | import { recursiveCopy } from '../lib/recursive-copy' |
| | import { |
| | BUILD_ID_FILE, |
| | CLIENT_PUBLIC_FILES_PATH, |
| | CLIENT_STATIC_FILES_PATH, |
| | EXPORT_DETAIL, |
| | EXPORT_MARKER, |
| | NEXT_FONT_MANIFEST, |
| | MIDDLEWARE_MANIFEST, |
| | PAGES_MANIFEST, |
| | PHASE_EXPORT, |
| | PRERENDER_MANIFEST, |
| | SERVER_DIRECTORY, |
| | SERVER_REFERENCE_MANIFEST, |
| | APP_PATH_ROUTES_MANIFEST, |
| | ROUTES_MANIFEST, |
| | FUNCTIONS_CONFIG_MANIFEST, |
| | } from '../shared/lib/constants' |
| | import loadConfig from '../server/config' |
| | import type { ExportPathMap } from '../server/config-shared' |
| | import { eventCliSession } from '../telemetry/events' |
| | import { hasNextSupport } from '../server/ci-info' |
| | import { Telemetry } from '../telemetry/storage' |
| | import { normalizePagePath } from '../shared/lib/page-path/normalize-page-path' |
| | import { denormalizePagePath } from '../shared/lib/page-path/denormalize-page-path' |
| | import { loadEnvConfig } from '@next/env' |
| | import { isAPIRoute } from '../lib/is-api-route' |
| | import { getPagePath } from '../server/require' |
| | import type { Span } from '../trace' |
| | import type { MiddlewareManifest } from '../build/webpack/plugins/middleware-plugin' |
| | import { isAppRouteRoute } from '../lib/is-app-route-route' |
| | import { isAppPageRoute } from '../lib/is-app-page-route' |
| | import isError from '../lib/is-error' |
| | import { formatManifest } from '../build/manifests/formatter/format-manifest' |
| | import { TurborepoAccessTraceResult } from '../build/turborepo-access-trace' |
| | import { createProgress } from '../build/progress' |
| | import type { DeepReadonly } from '../shared/lib/deep-readonly' |
| | import { isInterceptionRouteRewrite } from '../lib/generate-interception-routes-rewrites' |
| | import type { ActionManifest } from '../build/webpack/plugins/flight-client-entry-plugin' |
| | import { extractInfoFromServerReferenceId } from '../shared/lib/server-reference-info' |
| | import { convertSegmentPathToStaticExportFilename } from '../shared/lib/segment-cache/segment-value-encoding' |
| | import { getNextBuildDebuggerPortOffset } from '../lib/worker' |
| |
|
| | export class ExportError extends Error { |
| | code = 'NEXT_EXPORT_ERROR' |
| | } |
| |
|
| | async function exportAppImpl( |
| | dir: string, |
| | options: Readonly<ExportAppOptions>, |
| | span: Span |
| | ): Promise<ExportAppResult | null> { |
| | dir = resolve(dir) |
| |
|
| | |
| | span.traceChild('load-dotenv').traceFn(() => loadEnvConfig(dir, false, Log)) |
| |
|
| | const { enabledDirectories } = options |
| |
|
| | const nextConfig = |
| | options.nextConfig || |
| | (await span.traceChild('load-next-config').traceAsyncFn(() => |
| | loadConfig(PHASE_EXPORT, dir, { |
| | debugPrerender: options.debugPrerender, |
| | }) |
| | )) |
| |
|
| | const distDir = join(dir, nextConfig.distDir) |
| | const telemetry = options.buildExport ? null : new Telemetry({ distDir }) |
| |
|
| | if (telemetry) { |
| | telemetry.record( |
| | eventCliSession(distDir, nextConfig, { |
| | webpackVersion: null, |
| | cliCommand: 'export', |
| | isSrcDir: null, |
| | hasNowJson: !!(await findUp('now.json', { cwd: dir })), |
| | isCustomServer: null, |
| | turboFlag: false, |
| | pagesDir: null, |
| | appDir: null, |
| | }) |
| | ) |
| | } |
| |
|
| | const subFolders = nextConfig.trailingSlash && !options.buildExport |
| |
|
| | if (!options.silent && !options.buildExport) { |
| | Log.info(`using build directory: ${distDir}`) |
| | } |
| |
|
| | const buildIdFile = join(distDir, BUILD_ID_FILE) |
| |
|
| | if (!existsSync(buildIdFile)) { |
| | throw new ExportError( |
| | `Could not find a production build in the '${distDir}' directory. Try building your app with 'next build' before starting the static export. https://nextjs.org/docs/messages/next-export-no-build-id` |
| | ) |
| | } |
| |
|
| | const customRoutes = ['rewrites', 'redirects', 'headers'].filter( |
| | (config) => typeof nextConfig[config] === 'function' |
| | ) |
| |
|
| | if (!hasNextSupport && !options.buildExport && customRoutes.length > 0) { |
| | Log.warn( |
| | `rewrites, redirects, and headers are not applied when exporting your application, detected (${customRoutes.join( |
| | ', ' |
| | )}). See more info here: https://nextjs.org/docs/messages/export-no-custom-routes` |
| | ) |
| | } |
| |
|
| | const buildId = await fs.readFile(buildIdFile, 'utf8') |
| |
|
| | const pagesManifest = |
| | !options.pages && |
| | (require(join(distDir, SERVER_DIRECTORY, PAGES_MANIFEST)) as PagesManifest) |
| |
|
| | let prerenderManifest: DeepReadonly<PrerenderManifest> | undefined |
| | try { |
| | prerenderManifest = require(join(distDir, PRERENDER_MANIFEST)) |
| | } catch {} |
| |
|
| | let appRoutePathManifest: Record<string, string> | undefined |
| | try { |
| | appRoutePathManifest = require(join(distDir, APP_PATH_ROUTES_MANIFEST)) |
| | } catch (err) { |
| | if ( |
| | isError(err) && |
| | (err.code === 'ENOENT' || err.code === 'MODULE_NOT_FOUND') |
| | ) { |
| | |
| | |
| | appRoutePathManifest = undefined |
| | } else { |
| | |
| | throw err |
| | } |
| | } |
| |
|
| | const excludedPrerenderRoutes = new Set<string>() |
| | const pages = options.pages || Object.keys(pagesManifest) |
| | const defaultPathMap: ExportPathMap = {} |
| |
|
| | let hasApiRoutes = false |
| | for (const page of pages) { |
| | |
| | |
| | |
| |
|
| | if (isAPIRoute(page)) { |
| | hasApiRoutes = true |
| | continue |
| | } |
| |
|
| | if (page === '/_document' || page === '/_app' || page === '/_error') { |
| | continue |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | if (prerenderManifest?.dynamicRoutes[page]) { |
| | excludedPrerenderRoutes.add(page) |
| | continue |
| | } |
| |
|
| | defaultPathMap[page] = { page } |
| | } |
| |
|
| | const mapAppRouteToPage = new Map<string, string>() |
| | if (!options.buildExport && appRoutePathManifest) { |
| | for (const [pageName, routePath] of Object.entries(appRoutePathManifest)) { |
| | mapAppRouteToPage.set(routePath, pageName) |
| | if ( |
| | isAppPageRoute(pageName) && |
| | !prerenderManifest?.routes[routePath] && |
| | !prerenderManifest?.dynamicRoutes[routePath] |
| | ) { |
| | defaultPathMap[routePath] = { |
| | page: pageName, |
| | _isAppDir: true, |
| | } |
| | } |
| | } |
| | } |
| |
|
| | |
| | const outDir = options.outdir |
| |
|
| | if (outDir === join(dir, 'public')) { |
| | throw new ExportError( |
| | `The 'public' directory is reserved in Next.js and can not be used as the export out directory. https://nextjs.org/docs/messages/can-not-output-to-public` |
| | ) |
| | } |
| |
|
| | if (outDir === join(dir, 'static')) { |
| | throw new ExportError( |
| | `The 'static' directory is reserved in Next.js and can not be used as the export out directory. https://nextjs.org/docs/messages/can-not-output-to-static` |
| | ) |
| | } |
| |
|
| | await fs.rm(outDir, { recursive: true, force: true }) |
| | await fs.mkdir(join(outDir, '_next', buildId), { recursive: true }) |
| |
|
| | await fs.writeFile( |
| | join(distDir, EXPORT_DETAIL), |
| | formatManifest({ |
| | version: 1, |
| | outDirectory: outDir, |
| | success: false, |
| | }), |
| | 'utf8' |
| | ) |
| |
|
| | |
| | if (!options.buildExport && existsSync(join(dir, 'static'))) { |
| | if (!options.silent) { |
| | Log.info('Copying "static" directory') |
| | } |
| | await span |
| | .traceChild('copy-static-directory') |
| | .traceAsyncFn(() => |
| | recursiveCopy(join(dir, 'static'), join(outDir, 'static')) |
| | ) |
| | } |
| |
|
| | |
| | if ( |
| | !options.buildExport && |
| | existsSync(join(distDir, CLIENT_STATIC_FILES_PATH)) |
| | ) { |
| | if (!options.silent) { |
| | Log.info('Copying "static build" directory') |
| | } |
| | await span |
| | .traceChild('copy-next-static-directory') |
| | .traceAsyncFn(() => |
| | recursiveCopy( |
| | join(distDir, CLIENT_STATIC_FILES_PATH), |
| | join(outDir, '_next', CLIENT_STATIC_FILES_PATH) |
| | ) |
| | ) |
| | } |
| |
|
| | |
| | if (typeof nextConfig.exportPathMap !== 'function') { |
| | nextConfig.exportPathMap = async (defaultMap) => { |
| | return defaultMap |
| | } |
| | } |
| |
|
| | const { |
| | i18n, |
| | images: { loader = 'default', unoptimized }, |
| | } = nextConfig |
| |
|
| | if (i18n && !options.buildExport) { |
| | throw new ExportError( |
| | `i18n support is not compatible with next export. See here for more info on deploying: https://nextjs.org/docs/messages/export-no-custom-routes` |
| | ) |
| | } |
| |
|
| | if (!options.buildExport) { |
| | const { isNextImageImported } = await span |
| | .traceChild('is-next-image-imported') |
| | .traceAsyncFn(() => |
| | fs |
| | .readFile(join(distDir, EXPORT_MARKER), 'utf8') |
| | .then((text) => JSON.parse(text)) |
| | .catch(() => ({})) |
| | ) |
| |
|
| | if ( |
| | isNextImageImported && |
| | loader === 'default' && |
| | !unoptimized && |
| | !hasNextSupport |
| | ) { |
| | throw new ExportError( |
| | `Image Optimization using the default loader is not compatible with export. |
| | Possible solutions: |
| | - Use \`next start\` to run a server, which includes the Image Optimization API. |
| | - Configure \`images.unoptimized = true\` in \`next.config.js\` to disable the Image Optimization API. |
| | Read more: https://nextjs.org/docs/messages/export-image-api` |
| | ) |
| | } |
| | } |
| |
|
| | let serverActionsManifest: ActionManifest | undefined |
| | if (enabledDirectories.app) { |
| | serverActionsManifest = require( |
| | join(distDir, SERVER_DIRECTORY, SERVER_REFERENCE_MANIFEST + '.json') |
| | ) as ActionManifest |
| |
|
| | if (nextConfig.output === 'export') { |
| | const routesManifest = require(join(distDir, ROUTES_MANIFEST)) |
| |
|
| | |
| | |
| | if (routesManifest?.rewrites?.beforeFiles?.length > 0) { |
| | const hasInterceptionRouteRewrite = |
| | routesManifest.rewrites.beforeFiles.some(isInterceptionRouteRewrite) |
| |
|
| | if (hasInterceptionRouteRewrite) { |
| | throw new ExportError( |
| | `Intercepting routes are not supported with static export.\nRead more: https://nextjs.org/docs/app/building-your-application/deploying/static-exports#unsupported-features` |
| | ) |
| | } |
| | } |
| |
|
| | const actionIds = [ |
| | ...Object.keys(serverActionsManifest.node), |
| | ...Object.keys(serverActionsManifest.edge), |
| | ] |
| |
|
| | if ( |
| | actionIds.some( |
| | (actionId) => |
| | extractInfoFromServerReferenceId(actionId).type === 'server-action' |
| | ) |
| | ) { |
| | throw new ExportError( |
| | `Server Actions are not supported with static export.\nRead more: https://nextjs.org/docs/app/building-your-application/deploying/static-exports#unsupported-features` |
| | ) |
| | } |
| | } |
| | } |
| |
|
| | |
| | const renderOpts: WorkerRenderOptsPartial = { |
| | previewProps: prerenderManifest?.preview, |
| | nextExport: true, |
| | assetPrefix: nextConfig.assetPrefix.replace(/\/$/, ''), |
| | distDir, |
| | dev: false, |
| | basePath: nextConfig.basePath, |
| | trailingSlash: nextConfig.trailingSlash, |
| | canonicalBase: nextConfig.amp?.canonicalBase || '', |
| | ampSkipValidation: nextConfig.experimental.amp?.skipValidation || false, |
| | ampOptimizerConfig: nextConfig.experimental.amp?.optimizer || undefined, |
| | locales: i18n?.locales, |
| | locale: i18n?.defaultLocale, |
| | defaultLocale: i18n?.defaultLocale, |
| | domainLocales: i18n?.domains, |
| | disableOptimizedLoading: nextConfig.experimental.disableOptimizedLoading, |
| | |
| | supportsDynamicResponse: false, |
| | crossOrigin: nextConfig.crossOrigin, |
| | optimizeCss: nextConfig.experimental.optimizeCss, |
| | nextConfigOutput: nextConfig.output, |
| | nextScriptWorkers: nextConfig.experimental.nextScriptWorkers, |
| | largePageDataBytes: nextConfig.experimental.largePageDataBytes, |
| | serverActions: nextConfig.experimental.serverActions, |
| | serverComponents: enabledDirectories.app, |
| | cacheLifeProfiles: nextConfig.experimental.cacheLife, |
| | nextFontManifest: require( |
| | join(distDir, 'server', `${NEXT_FONT_MANIFEST}.json`) |
| | ), |
| | images: nextConfig.images, |
| | ...(enabledDirectories.app |
| | ? { |
| | serverActionsManifest, |
| | } |
| | : {}), |
| | deploymentId: nextConfig.deploymentId, |
| | htmlLimitedBots: nextConfig.htmlLimitedBots.source, |
| | experimental: { |
| | clientTraceMetadata: nextConfig.experimental.clientTraceMetadata, |
| | expireTime: nextConfig.expireTime, |
| | staleTimes: nextConfig.experimental.staleTimes, |
| | cacheComponents: nextConfig.experimental.cacheComponents ?? false, |
| | clientSegmentCache: |
| | nextConfig.experimental.clientSegmentCache === 'client-only' |
| | ? 'client-only' |
| | : Boolean(nextConfig.experimental.clientSegmentCache), |
| | dynamicOnHover: nextConfig.experimental.dynamicOnHover ?? false, |
| | inlineCss: nextConfig.experimental.inlineCss ?? false, |
| | authInterrupts: !!nextConfig.experimental.authInterrupts, |
| | }, |
| | reactMaxHeadersLength: nextConfig.reactMaxHeadersLength, |
| | hasReadableErrorStacks: |
| | nextConfig.experimental.serverSourceMaps === true && |
| | |
| | |
| | (process.env.TURBOPACK |
| | ? nextConfig.experimental.turbopackMinify === false |
| | : nextConfig.experimental.serverMinification === false) && |
| | nextConfig.experimental.enablePrerenderSourceMaps === true, |
| | } |
| |
|
| | const { publicRuntimeConfig } = nextConfig |
| |
|
| | if (Object.keys(publicRuntimeConfig).length > 0) { |
| | renderOpts.runtimeConfig = publicRuntimeConfig |
| | } |
| |
|
| | |
| | ;(globalThis as any).__NEXT_DATA__ = { |
| | nextExport: true, |
| | } |
| |
|
| | const exportPathMap = await span |
| | .traceChild('run-export-path-map') |
| | .traceAsyncFn(async () => { |
| | const exportMap = await nextConfig.exportPathMap(defaultPathMap, { |
| | dev: false, |
| | dir, |
| | outDir, |
| | distDir, |
| | buildId, |
| | }) |
| | return exportMap |
| | }) |
| |
|
| | |
| | if (!options.buildExport) { |
| | |
| | if (!exportPathMap['/404']) { |
| | exportPathMap['/404'] = { page: '/_error' } |
| | } |
| |
|
| | |
| | |
| | |
| | |
| | if (!exportPathMap['/404.html']) { |
| | |
| | exportPathMap['/404.html'] = exportPathMap['/404'] |
| | } |
| | } |
| |
|
| | const allExportPaths: ExportPathEntry[] = [] |
| | const seenExportPaths = new Set<string>() |
| | const fallbackEnabledPages = new Set<string>() |
| |
|
| | for (const [path, entry] of Object.entries(exportPathMap)) { |
| | |
| | const normalizedPath = denormalizePagePath(normalizePagePath(path)) |
| |
|
| | if (seenExportPaths.has(normalizedPath)) { |
| | continue |
| | } |
| |
|
| | seenExportPaths.add(normalizedPath) |
| |
|
| | if (!entry._isAppDir && isAPIRoute(entry.page)) { |
| | hasApiRoutes = true |
| | continue |
| | } |
| |
|
| | allExportPaths.push({ ...entry, path: normalizedPath }) |
| |
|
| | if (prerenderManifest && !options.buildExport) { |
| | const prerenderInfo = prerenderManifest.dynamicRoutes[entry.page] |
| |
|
| | if (prerenderInfo && prerenderInfo.fallback !== false) { |
| | fallbackEnabledPages.add(entry.page) |
| | } |
| | } |
| | } |
| |
|
| | if (allExportPaths.length === 0) { |
| | return null |
| | } |
| |
|
| | if (fallbackEnabledPages.size > 0) { |
| | throw new ExportError( |
| | `Found pages with \`fallback\` enabled:\n${[...fallbackEnabledPages].join( |
| | '\n' |
| | )}\n${SSG_FALLBACK_EXPORT_ERROR}\n` |
| | ) |
| | } |
| |
|
| | let hasMiddleware = false |
| |
|
| | if (!options.buildExport) { |
| | try { |
| | const middlewareManifest = require( |
| | join(distDir, SERVER_DIRECTORY, MIDDLEWARE_MANIFEST) |
| | ) as MiddlewareManifest |
| |
|
| | const functionsConfigManifest = require( |
| | join(distDir, SERVER_DIRECTORY, FUNCTIONS_CONFIG_MANIFEST) |
| | ) |
| |
|
| | hasMiddleware = |
| | Object.keys(middlewareManifest.middleware).length > 0 || |
| | Boolean(functionsConfigManifest.functions?.['/_middleware']) |
| | } catch {} |
| |
|
| | |
| | if (hasApiRoutes || hasMiddleware) { |
| | if (nextConfig.output === 'export') { |
| | Log.warn( |
| | yellow( |
| | `Statically exporting a Next.js application via \`next export\` disables API routes and middleware.` |
| | ) + |
| | `\n` + |
| | yellow( |
| | `This command is meant for static-only hosts, and is` + |
| | ' ' + |
| | bold(`not necessary to make your application static.`) |
| | ) + |
| | `\n` + |
| | yellow( |
| | `Pages in your application without server-side data dependencies will be automatically statically exported by \`next build\`, including pages powered by \`getStaticProps\`.` |
| | ) + |
| | `\n` + |
| | yellow( |
| | `Learn more: https://nextjs.org/docs/messages/api-routes-static-export` |
| | ) |
| | ) |
| | } |
| | } |
| | } |
| |
|
| | const pagesDataDir = options.buildExport |
| | ? outDir |
| | : join(outDir, '_next/data', buildId) |
| |
|
| | const ampValidations: AmpPageStatus = {} |
| |
|
| | const publicDir = join(dir, CLIENT_PUBLIC_FILES_PATH) |
| | |
| | if (!options.buildExport && existsSync(publicDir)) { |
| | if (!options.silent) { |
| | Log.info('Copying "public" directory') |
| | } |
| | await span.traceChild('copy-public-directory').traceAsyncFn(() => |
| | recursiveCopy(publicDir, outDir, { |
| | filter(path) { |
| | |
| | return !exportPathMap[path] |
| | }, |
| | }) |
| | ) |
| | } |
| |
|
| | const exportPagesInBatches = async ( |
| | worker: StaticWorker, |
| | exportPaths: ExportPathEntry[], |
| | renderResumeDataCachesByPage?: Record<string, string> |
| | ): Promise<ExportPagesResult> => { |
| | |
| | |
| | |
| | |
| | const minPageCountPerBatch = |
| | nextConfig.experimental.staticGenerationMinPagesPerWorker ?? 25 |
| |
|
| | |
| | |
| | const numWorkers = Math.min( |
| | options.numWorkers, |
| | Math.ceil(exportPaths.length / minPageCountPerBatch) |
| | ) |
| |
|
| | |
| | const pageCountPerBatch = Math.ceil(exportPaths.length / numWorkers) |
| |
|
| | const batches = Array.from({ length: numWorkers }, (_, i) => |
| | exportPaths.slice(i * pageCountPerBatch, (i + 1) * pageCountPerBatch) |
| | ) |
| |
|
| | |
| | const remainingPages = exportPaths.slice(numWorkers * pageCountPerBatch) |
| | remainingPages.forEach((page, index) => { |
| | batches[index % batches.length].push(page) |
| | }) |
| |
|
| | return ( |
| | await Promise.all( |
| | batches.map(async (batch) => |
| | worker.exportPages({ |
| | buildId, |
| | exportPaths: batch, |
| | parentSpanId: span.getId(), |
| | pagesDataDir, |
| | renderOpts, |
| | options, |
| | dir, |
| | distDir, |
| | outDir, |
| | nextConfig, |
| | cacheHandler: nextConfig.cacheHandler, |
| | cacheMaxMemorySize: nextConfig.cacheMaxMemorySize, |
| | fetchCache: true, |
| | fetchCacheKeyPrefix: nextConfig.experimental.fetchCacheKeyPrefix, |
| | renderResumeDataCachesByPage, |
| | }) |
| | ) |
| | ) |
| | ).flat() |
| | } |
| |
|
| | let initialPhaseExportPaths: ExportPathEntry[] = [] |
| | const finalPhaseExportPaths: ExportPathEntry[] = [] |
| |
|
| | if (renderOpts.experimental.cacheComponents) { |
| | for (const exportPath of allExportPaths) { |
| | if (exportPath._allowEmptyStaticShell) { |
| | finalPhaseExportPaths.push(exportPath) |
| | } else { |
| | initialPhaseExportPaths.push(exportPath) |
| | } |
| | } |
| | } else { |
| | initialPhaseExportPaths = allExportPaths |
| | } |
| |
|
| | const progress = createProgress( |
| | initialPhaseExportPaths.length + finalPhaseExportPaths.length, |
| | options.statusMessage || 'Exporting' |
| | ) |
| |
|
| | const worker = createStaticWorker(nextConfig, { |
| | debuggerPortOffset: getNextBuildDebuggerPortOffset({ kind: 'export-page' }), |
| | progress, |
| | }) |
| |
|
| | const results = await exportPagesInBatches(worker, initialPhaseExportPaths) |
| |
|
| | if (finalPhaseExportPaths.length > 0) { |
| | const renderResumeDataCachesByPage: Record<string, string> = {} |
| |
|
| | for (const { page, result } of results) { |
| | if (!result) { |
| | continue |
| | } |
| |
|
| | if ('renderResumeDataCache' in result && result.renderResumeDataCache) { |
| | |
| | |
| | |
| | renderResumeDataCachesByPage[page] = result.renderResumeDataCache |
| | |
| | |
| | result.renderResumeDataCache = undefined |
| | } |
| | } |
| |
|
| | const finalPhaseResults = await exportPagesInBatches( |
| | worker, |
| | finalPhaseExportPaths, |
| | renderResumeDataCachesByPage |
| | ) |
| |
|
| | results.push(...finalPhaseResults) |
| | } |
| |
|
| | let hadValidationError = false |
| |
|
| | const collector: ExportAppResult = { |
| | byPath: new Map(), |
| | byPage: new Map(), |
| | ssgNotFoundPaths: new Set(), |
| | turborepoAccessTraceResults: new Map(), |
| | } |
| |
|
| | const failedExportAttemptsByPage: Map<string, boolean> = new Map() |
| |
|
| | for (const { result, path, page, pageKey } of results) { |
| | if (!result) continue |
| | if ('error' in result) { |
| | failedExportAttemptsByPage.set(pageKey, true) |
| | continue |
| | } |
| |
|
| | if (result.turborepoAccessTraceResult) { |
| | collector.turborepoAccessTraceResults?.set( |
| | path, |
| | TurborepoAccessTraceResult.fromSerialized( |
| | result.turborepoAccessTraceResult |
| | ) |
| | ) |
| | } |
| |
|
| | |
| | if (result.ampValidations) { |
| | for (const validation of result.ampValidations) { |
| | ampValidations[validation.page] = validation.result |
| | hadValidationError ||= validation.result.errors.length > 0 |
| | } |
| | } |
| |
|
| | if (options.buildExport) { |
| | |
| | const info = collector.byPath.get(path) ?? {} |
| | if (result.cacheControl) { |
| | info.cacheControl = result.cacheControl |
| | } |
| | if (typeof result.metadata !== 'undefined') { |
| | info.metadata = result.metadata |
| | } |
| |
|
| | if (typeof result.hasEmptyStaticShell !== 'undefined') { |
| | info.hasEmptyStaticShell = result.hasEmptyStaticShell |
| | } |
| |
|
| | if (typeof result.hasPostponed !== 'undefined') { |
| | info.hasPostponed = result.hasPostponed |
| | } |
| |
|
| | if (typeof result.fetchMetrics !== 'undefined') { |
| | info.fetchMetrics = result.fetchMetrics |
| | } |
| |
|
| | collector.byPath.set(path, info) |
| |
|
| | |
| | if (result.ssgNotFound === true) { |
| | collector.ssgNotFoundPaths.add(path) |
| | } |
| |
|
| | |
| | const durations = collector.byPage.get(page) ?? { |
| | durationsByPath: new Map<string, number>(), |
| | } |
| | durations.durationsByPath.set(path, result.duration) |
| | collector.byPage.set(page, durations) |
| | } |
| | } |
| |
|
| | |
| | if (!options.buildExport && nextConfig.experimental.ppr) { |
| | |
| | throw new Error('Invariant: PPR cannot be enabled in export mode') |
| | } |
| |
|
| | |
| | if (!options.buildExport && prerenderManifest) { |
| | await Promise.all( |
| | Object.keys(prerenderManifest.routes).map(async (unnormalizedRoute) => { |
| | const { srcRoute } = prerenderManifest!.routes[unnormalizedRoute] |
| | const appPageName = mapAppRouteToPage.get(srcRoute || '') |
| | const pageName = appPageName || srcRoute || unnormalizedRoute |
| | const isAppPath = Boolean(appPageName) |
| | const isAppRouteHandler = appPageName && isAppRouteRoute(appPageName) |
| |
|
| | |
| | |
| | if (prerenderManifest!.notFoundRoutes.includes(unnormalizedRoute)) { |
| | return |
| | } |
| | |
| | |
| | |
| | |
| | const route = normalizePagePath(unnormalizedRoute) |
| |
|
| | const pagePath = getPagePath(pageName, distDir, undefined, isAppPath) |
| | const distPagesDir = join( |
| | pagePath, |
| | |
| | |
| | pageName |
| | .slice(1) |
| | .split('/') |
| | .map(() => '..') |
| | .join('/') |
| | ) |
| |
|
| | const orig = join(distPagesDir, route) |
| | const handlerSrc = `${orig}.body` |
| | const handlerDest = join(outDir, route) |
| |
|
| | if (isAppRouteHandler && existsSync(handlerSrc)) { |
| | await fs.mkdir(dirname(handlerDest), { recursive: true }) |
| | await fs.copyFile(handlerSrc, handlerDest) |
| | return |
| | } |
| |
|
| | const htmlDest = join( |
| | outDir, |
| | `${route}${ |
| | subFolders && route !== '/index' ? `${sep}index` : '' |
| | }.html` |
| | ) |
| | const ampHtmlDest = join( |
| | outDir, |
| | `${route}.amp${subFolders ? `${sep}index` : ''}.html` |
| | ) |
| | const jsonDest = isAppPath |
| | ? join( |
| | outDir, |
| | `${route}${ |
| | subFolders && route !== '/index' ? `${sep}index` : '' |
| | }.txt` |
| | ) |
| | : join(pagesDataDir, `${route}.json`) |
| |
|
| | await fs.mkdir(dirname(htmlDest), { recursive: true }) |
| | await fs.mkdir(dirname(jsonDest), { recursive: true }) |
| |
|
| | const htmlSrc = `${orig}.html` |
| | const jsonSrc = `${orig}${isAppPath ? RSC_SUFFIX : '.json'}` |
| |
|
| | await fs.copyFile(htmlSrc, htmlDest) |
| | await fs.copyFile(jsonSrc, jsonDest) |
| |
|
| | if (existsSync(`${orig}.amp.html`)) { |
| | await fs.mkdir(dirname(ampHtmlDest), { recursive: true }) |
| | await fs.copyFile(`${orig}.amp.html`, ampHtmlDest) |
| | } |
| |
|
| | const segmentsDir = `${orig}${RSC_SEGMENTS_DIR_SUFFIX}` |
| | if (isAppPath && existsSync(segmentsDir)) { |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | const segmentsDirDest = join(outDir, unnormalizedRoute) |
| | const segmentPaths = await collectSegmentPaths(segmentsDir) |
| | await Promise.all( |
| | segmentPaths.map(async (segmentFileSrc) => { |
| | const segmentPath = |
| | '/' + segmentFileSrc.slice(0, -RSC_SEGMENT_SUFFIX.length) |
| | const segmentFilename = |
| | convertSegmentPathToStaticExportFilename(segmentPath) |
| | const segmentFileDest = join(segmentsDirDest, segmentFilename) |
| | await fs.mkdir(dirname(segmentFileDest), { recursive: true }) |
| | await fs.copyFile( |
| | join(segmentsDir, segmentFileSrc), |
| | segmentFileDest |
| | ) |
| | }) |
| | ) |
| | } |
| | }) |
| | ) |
| | } |
| |
|
| | if (Object.keys(ampValidations).length) { |
| | console.log(formatAmpMessages(ampValidations)) |
| | } |
| | if (hadValidationError) { |
| | throw new ExportError( |
| | `AMP Validation caused the export to fail. https://nextjs.org/docs/messages/amp-export-validation` |
| | ) |
| | } |
| |
|
| | if (failedExportAttemptsByPage.size > 0) { |
| | const failedPages = Array.from(failedExportAttemptsByPage.keys()) |
| | throw new ExportError( |
| | `Export encountered errors on following paths:\n\t${failedPages |
| | .sort() |
| | .join('\n\t')}` |
| | ) |
| | } |
| |
|
| | await fs.writeFile( |
| | join(distDir, EXPORT_DETAIL), |
| | formatManifest({ |
| | version: 1, |
| | outDirectory: outDir, |
| | success: true, |
| | }), |
| | 'utf8' |
| | ) |
| |
|
| | if (telemetry) { |
| | await telemetry.flush() |
| | } |
| |
|
| | await worker.end() |
| |
|
| | return collector |
| | } |
| |
|
| | async function collectSegmentPaths(segmentsDirectory: string) { |
| | const results: Array<string> = [] |
| | await collectSegmentPathsImpl(segmentsDirectory, segmentsDirectory, results) |
| | return results |
| | } |
| |
|
| | async function collectSegmentPathsImpl( |
| | segmentsDirectory: string, |
| | directory: string, |
| | results: Array<string> |
| | ) { |
| | const segmentFiles = await fs.readdir(directory, { |
| | withFileTypes: true, |
| | }) |
| | await Promise.all( |
| | segmentFiles.map(async (segmentFile) => { |
| | if (segmentFile.isDirectory()) { |
| | await collectSegmentPathsImpl( |
| | segmentsDirectory, |
| | join(directory, segmentFile.name), |
| | results |
| | ) |
| | return |
| | } |
| | if (!segmentFile.name.endsWith(RSC_SEGMENT_SUFFIX)) { |
| | return |
| | } |
| | results.push( |
| | relative(segmentsDirectory, join(directory, segmentFile.name)) |
| | ) |
| | }) |
| | ) |
| | } |
| |
|
| | export default async function exportApp( |
| | dir: string, |
| | options: ExportAppOptions, |
| | span: Span |
| | ): Promise<ExportAppResult | null> { |
| | const nextExportSpan = span.traceChild('next-export') |
| |
|
| | return nextExportSpan.traceAsyncFn(async () => { |
| | return await exportAppImpl(dir, options, nextExportSpan) |
| | }) |
| | } |
| |
|