{"version":3,"sources":["../../../src/server/dev/turbopack-utils.ts"],"sourcesContent":["import type {\n ServerFields,\n SetupOpts,\n} from '../lib/router-utils/setup-dev-bundler'\nimport type {\n Issue,\n TurbopackResult,\n Endpoint,\n RawEntrypoints,\n Update as TurbopackUpdate,\n WrittenEndpoint,\n} from '../../build/swc/types'\nimport {\n type HmrMessageSentToBrowser,\n HMR_MESSAGE_SENT_TO_BROWSER,\n} from './hot-reloader-types'\nimport * as Log from '../../build/output/log'\nimport type { PropagateToWorkersField } from '../lib/router-utils/types'\nimport type { TurbopackManifestLoader } from '../../shared/lib/turbopack/manifest-loader'\nimport type { AppRoute, Entrypoints, PageRoute } from '../../build/swc/types'\nimport {\n type EntryKey,\n getEntryKey,\n splitEntryKey,\n} from '../../shared/lib/turbopack/entry-key'\nimport type ws from 'next/dist/compiled/ws'\nimport { isMetadataRoute } from '../../lib/metadata/is-metadata-route'\nimport type { CustomRoutes } from '../../lib/load-custom-routes'\nimport {\n formatIssue,\n getIssueKey,\n isRelevantWarning,\n processIssues,\n renderStyledStringToErrorAnsi,\n type EntryIssuesMap,\n type TopLevelIssuesMap,\n} from '../../shared/lib/turbopack/utils'\nimport { MIDDLEWARE_FILENAME, PROXY_FILENAME } from '../../lib/constants'\n\nconst onceErrorSet = new Set()\n/**\n * Check if given issue is a warning to be display only once.\n * This mimics behavior of get-page-static-info's warnOnce.\n * @param issue\n * @returns\n */\nfunction shouldEmitOnceWarning(issue: Issue): boolean {\n const { severity, title, stage } = issue\n if (severity === 'warning' && title.value === 'Invalid page configuration') {\n if (onceErrorSet.has(issue)) {\n return false\n }\n onceErrorSet.add(issue)\n }\n if (\n severity === 'warning' &&\n stage === 'config' &&\n renderStyledStringToErrorAnsi(issue.title).includes(\"can't be external\")\n ) {\n if (onceErrorSet.has(issue)) {\n return false\n }\n onceErrorSet.add(issue)\n }\n\n return true\n}\n\n/// Print out an issue to the console which should not block\n/// the build by throwing out or blocking error overlay.\nexport function printNonFatalIssue(issue: Issue) {\n if (isRelevantWarning(issue) && shouldEmitOnceWarning(issue)) {\n Log.warn(formatIssue(issue))\n }\n}\n\nexport function processTopLevelIssues(\n currentTopLevelIssues: TopLevelIssuesMap,\n result: TurbopackResult\n) {\n currentTopLevelIssues.clear()\n\n for (const issue of result.issues) {\n const issueKey = getIssueKey(issue)\n currentTopLevelIssues.set(issueKey, issue)\n }\n}\n\nconst MILLISECONDS_IN_NANOSECOND = BigInt(1_000_000)\n\nexport function msToNs(ms: number): bigint {\n return BigInt(Math.floor(ms)) * MILLISECONDS_IN_NANOSECOND\n}\n\nexport type ChangeSubscriptions = Map<\n EntryKey,\n Promise>\n>\n\nexport type HandleWrittenEndpoint = (\n key: EntryKey,\n result: TurbopackResult,\n forceDeleteCache: boolean\n) => boolean\n\nexport type StartChangeSubscription = (\n key: EntryKey,\n includeIssues: boolean,\n endpoint: Endpoint,\n createMessage: (\n change: TurbopackResult,\n hash: string\n ) => Promise | HmrMessageSentToBrowser | void,\n onError?: (\n e: Error\n ) => Promise | HmrMessageSentToBrowser | void\n) => Promise\n\nexport type StopChangeSubscription = (key: EntryKey) => Promise\n\nexport type SendHmr = (id: string, message: HmrMessageSentToBrowser) => void\n\nexport type StartBuilding = (\n id: string,\n requestUrl: string | undefined,\n forceRebuild: boolean\n) => () => void\n\nexport type ReadyIds = Set\n\nexport type ClientState = {\n clientIssues: EntryIssuesMap\n messages: Map\n turbopackUpdates: TurbopackUpdate[]\n subscriptions: Map>\n}\n\nexport type ClientStateMap = WeakMap\n\n// hooks only used by the dev server.\ntype HandleRouteTypeHooks = {\n handleWrittenEndpoint: HandleWrittenEndpoint\n subscribeToChanges: StartChangeSubscription\n}\n\nexport async function handleRouteType({\n dev,\n page,\n pathname,\n route,\n currentEntryIssues,\n entrypoints,\n manifestLoader,\n readyIds,\n devRewrites,\n productionRewrites,\n hooks,\n logErrors,\n}: {\n dev: boolean\n page: string\n pathname: string\n route: PageRoute | AppRoute\n\n currentEntryIssues: EntryIssuesMap\n entrypoints: Entrypoints\n manifestLoader: TurbopackManifestLoader\n devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined\n productionRewrites: CustomRoutes['rewrites'] | undefined\n logErrors: boolean\n\n readyIds?: ReadyIds // dev\n\n hooks?: HandleRouteTypeHooks // dev\n}) {\n const shouldCreateWebpackStats = process.env.TURBOPACK_STATS != null\n\n switch (route.type) {\n case 'page': {\n const clientKey = getEntryKey('pages', 'client', page)\n const serverKey = getEntryKey('pages', 'server', page)\n\n try {\n // In the best case scenario, Turbopack chunks document, app, page separately in that order,\n // so it can happen that the chunks of document change, but the chunks of app and page\n // don't. We still need to reload the page chunks in that case though, otherwise the version\n // of the document or app component export from the pages template is stale.\n let documentOrAppChanged = false\n if (entrypoints.global.app) {\n const key = getEntryKey('pages', 'server', '_app')\n\n const writtenEndpoint = await entrypoints.global.app.writeToDisk()\n documentOrAppChanged ||=\n hooks?.handleWrittenEndpoint(key, writtenEndpoint, false) ?? false\n processIssues(\n currentEntryIssues,\n key,\n writtenEndpoint,\n false,\n logErrors\n )\n }\n await manifestLoader.loadBuildManifest('_app')\n await manifestLoader.loadPagesManifest('_app')\n\n if (entrypoints.global.document) {\n const key = getEntryKey('pages', 'server', '_document')\n\n const writtenEndpoint =\n await entrypoints.global.document.writeToDisk()\n documentOrAppChanged ||=\n hooks?.handleWrittenEndpoint(key, writtenEndpoint, false) ?? false\n processIssues(\n currentEntryIssues,\n key,\n writtenEndpoint,\n false,\n logErrors\n )\n }\n await manifestLoader.loadPagesManifest('_document')\n\n const writtenEndpoint = await route.htmlEndpoint.writeToDisk()\n hooks?.handleWrittenEndpoint(\n serverKey,\n writtenEndpoint,\n documentOrAppChanged\n )\n\n const type = writtenEndpoint?.type\n\n await manifestLoader.loadClientBuildManifest(page)\n await manifestLoader.loadBuildManifest(page)\n await manifestLoader.loadPagesManifest(page)\n if (type === 'edge') {\n await manifestLoader.loadMiddlewareManifest(page, 'pages')\n } else {\n manifestLoader.deleteMiddlewareManifest(serverKey)\n }\n await manifestLoader.loadFontManifest('/_app', 'pages')\n await manifestLoader.loadFontManifest(page, 'pages')\n\n if (shouldCreateWebpackStats) {\n await manifestLoader.loadWebpackStats(page, 'pages')\n }\n\n manifestLoader.writeManifests({\n devRewrites,\n productionRewrites,\n entrypoints,\n })\n\n processIssues(\n currentEntryIssues,\n serverKey,\n writtenEndpoint,\n false,\n logErrors\n )\n } finally {\n if (dev) {\n // TODO subscriptions should only be caused by the WebSocket connections\n // otherwise we don't known when to unsubscribe and this leaking\n hooks?.subscribeToChanges(\n serverKey,\n false,\n route.dataEndpoint,\n () => {\n // Report the next compilation again\n readyIds?.delete(pathname)\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.SERVER_ONLY_CHANGES,\n pages: [page],\n }\n },\n (e) => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: `error in ${page} data subscription: ${e}`,\n }\n }\n )\n hooks?.subscribeToChanges(\n clientKey,\n false,\n route.htmlEndpoint,\n () => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES,\n }\n },\n (e) => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: `error in ${page} html subscription: ${e}`,\n }\n }\n )\n if (entrypoints.global.document) {\n hooks?.subscribeToChanges(\n getEntryKey('pages', 'server', '_document'),\n false,\n entrypoints.global.document,\n () => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: '_document has changed (page route)',\n }\n },\n (e) => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: `error in _document subscription (page route): ${e}`,\n }\n }\n )\n }\n }\n }\n\n break\n }\n case 'page-api': {\n const key = getEntryKey('pages', 'server', page)\n\n const writtenEndpoint = await route.endpoint.writeToDisk()\n hooks?.handleWrittenEndpoint(key, writtenEndpoint, false)\n\n const type = writtenEndpoint.type\n\n await manifestLoader.loadPagesManifest(page)\n if (type === 'edge') {\n await manifestLoader.loadMiddlewareManifest(page, 'pages')\n } else {\n manifestLoader.deleteMiddlewareManifest(key)\n }\n\n manifestLoader.writeManifests({\n devRewrites,\n productionRewrites,\n entrypoints,\n })\n\n processIssues(currentEntryIssues, key, writtenEndpoint, true, logErrors)\n\n break\n }\n case 'app-page': {\n const key = getEntryKey('app', 'server', page)\n\n const writtenEndpoint = await route.htmlEndpoint.writeToDisk()\n hooks?.handleWrittenEndpoint(key, writtenEndpoint, false)\n\n if (dev) {\n // TODO subscriptions should only be caused by the WebSocket connections\n // otherwise we don't known when to unsubscribe and this leaking\n hooks?.subscribeToChanges(\n key,\n true,\n route.rscEndpoint,\n (change, hash) => {\n if (change.issues.some((issue) => issue.severity === 'error')) {\n // Ignore any updates that has errors\n // There will be another update without errors eventually\n return\n }\n // Report the next compilation again\n readyIds?.delete(pathname)\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES,\n hash,\n }\n },\n (e) => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: `error in ${page} app-page subscription: ${e}`,\n }\n }\n )\n }\n\n const type = writtenEndpoint.type\n\n if (type === 'edge') {\n manifestLoader.loadMiddlewareManifest(page, 'app')\n } else {\n manifestLoader.deleteMiddlewareManifest(key)\n }\n\n manifestLoader.loadBuildManifest(page, 'app')\n manifestLoader.loadAppPathsManifest(page)\n manifestLoader.loadActionManifest(page)\n manifestLoader.loadFontManifest(page, 'app')\n\n if (shouldCreateWebpackStats) {\n manifestLoader.loadWebpackStats(page, 'app')\n }\n\n manifestLoader.writeManifests({\n devRewrites,\n productionRewrites,\n entrypoints,\n })\n\n processIssues(currentEntryIssues, key, writtenEndpoint, dev, logErrors)\n\n break\n }\n case 'app-route': {\n const key = getEntryKey('app', 'server', page)\n\n const writtenEndpoint = await route.endpoint.writeToDisk()\n hooks?.handleWrittenEndpoint(key, writtenEndpoint, false)\n\n const type = writtenEndpoint.type\n\n manifestLoader.loadAppPathsManifest(page)\n\n if (type === 'edge') {\n manifestLoader.loadMiddlewareManifest(page, 'app')\n } else {\n manifestLoader.deleteMiddlewareManifest(key)\n }\n\n manifestLoader.writeManifests({\n devRewrites,\n productionRewrites,\n entrypoints,\n })\n processIssues(currentEntryIssues, key, writtenEndpoint, true, logErrors)\n\n break\n }\n default: {\n throw new Error(`unknown route type ${(route as any).type} for ${page}`)\n }\n }\n}\n\n/**\n * Maintains a mapping between entrypoins and the corresponding client asset paths.\n */\nexport class AssetMapper {\n private entryMap: Map> = new Map()\n private assetMap: Map> = new Map()\n\n /**\n * Overrides asset paths for a key and updates the mapping from path to key.\n *\n * @param key\n * @param assetPaths asset paths relative to the .next directory\n */\n setPathsForKey(key: EntryKey, assetPaths: string[]): void {\n this.delete(key)\n\n const newAssetPaths = new Set(assetPaths)\n this.entryMap.set(key, newAssetPaths)\n\n for (const assetPath of newAssetPaths) {\n let assetPathKeys = this.assetMap.get(assetPath)\n if (!assetPathKeys) {\n assetPathKeys = new Set()\n this.assetMap.set(assetPath, assetPathKeys)\n }\n\n assetPathKeys!.add(key)\n }\n }\n\n /**\n * Deletes the key and any asset only referenced by this key.\n *\n * @param key\n */\n delete(key: EntryKey) {\n for (const assetPath of this.getAssetPathsByKey(key)) {\n const assetPathKeys = this.assetMap.get(assetPath)\n\n assetPathKeys?.delete(key)\n\n if (!assetPathKeys?.size) {\n this.assetMap.delete(assetPath)\n }\n }\n\n this.entryMap.delete(key)\n }\n\n getAssetPathsByKey(key: EntryKey): string[] {\n return Array.from(this.entryMap.get(key) ?? [])\n }\n\n getKeysByAsset(path: string): EntryKey[] {\n return Array.from(this.assetMap.get(path) ?? [])\n }\n\n keys(): IterableIterator {\n return this.entryMap.keys()\n }\n}\n\nexport function hasEntrypointForKey(\n entrypoints: Entrypoints,\n key: EntryKey,\n assetMapper: AssetMapper | undefined\n): boolean {\n const { type, page } = splitEntryKey(key)\n\n switch (type) {\n case 'app':\n return entrypoints.app.has(page)\n case 'pages':\n switch (page) {\n case '_app':\n return entrypoints.global.app != null\n case '_document':\n return entrypoints.global.document != null\n case '_error':\n return entrypoints.global.error != null\n default:\n return entrypoints.page.has(page)\n }\n case 'root':\n switch (page) {\n case 'middleware':\n return entrypoints.global.middleware != null\n case 'instrumentation':\n return entrypoints.global.instrumentation != null\n default:\n return false\n }\n case 'assets':\n if (!assetMapper) {\n return false\n }\n\n return assetMapper\n .getKeysByAsset(page)\n .some((pageKey) =>\n hasEntrypointForKey(entrypoints, pageKey, assetMapper)\n )\n default: {\n // validation that we covered all cases, this should never run.\n const _: never = type\n return false\n }\n }\n}\n\n// hooks only used by the dev server.\ntype HandleEntrypointsHooks = {\n handleWrittenEndpoint: HandleWrittenEndpoint\n propagateServerField: (\n field: PropagateToWorkersField,\n args: any\n ) => Promise\n sendHmr: SendHmr\n startBuilding: StartBuilding\n subscribeToChanges: StartChangeSubscription\n unsubscribeFromChanges: StopChangeSubscription\n unsubscribeFromHmrEvents: (client: ws, id: string) => void\n}\n\ntype HandleEntrypointsDevOpts = {\n assetMapper: AssetMapper\n changeSubscriptions: ChangeSubscriptions\n clients: Array\n clientStates: ClientStateMap\n serverFields: ServerFields\n\n hooks: HandleEntrypointsHooks\n}\n\nexport async function handleEntrypoints({\n entrypoints,\n\n currentEntrypoints,\n\n currentEntryIssues,\n manifestLoader,\n devRewrites,\n logErrors,\n dev,\n}: {\n entrypoints: TurbopackResult\n\n currentEntrypoints: Entrypoints\n\n currentEntryIssues: EntryIssuesMap\n manifestLoader: TurbopackManifestLoader\n devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined\n productionRewrites: CustomRoutes['rewrites'] | undefined\n logErrors: boolean\n\n dev: HandleEntrypointsDevOpts\n}) {\n currentEntrypoints.global.app = entrypoints.pagesAppEndpoint\n currentEntrypoints.global.document = entrypoints.pagesDocumentEndpoint\n currentEntrypoints.global.error = entrypoints.pagesErrorEndpoint\n\n currentEntrypoints.global.instrumentation = entrypoints.instrumentation\n\n currentEntrypoints.page.clear()\n currentEntrypoints.app.clear()\n\n for (const [pathname, route] of entrypoints.routes) {\n switch (route.type) {\n case 'page':\n case 'page-api':\n currentEntrypoints.page.set(pathname, route)\n break\n case 'app-page': {\n route.pages.forEach((page) => {\n currentEntrypoints.app.set(page.originalName, {\n type: 'app-page',\n ...page,\n })\n })\n break\n }\n case 'app-route': {\n currentEntrypoints.app.set(route.originalName, route)\n break\n }\n case 'conflict':\n Log.info(`skipping ${pathname} (${route.type})`)\n break\n default:\n route satisfies never\n }\n }\n\n if (dev) {\n await handleEntrypointsDevCleanup({\n currentEntryIssues,\n currentEntrypoints,\n\n ...dev,\n })\n }\n\n const { middleware, instrumentation } = entrypoints\n\n // We check for explicit true/false, since it's initialized to\n // undefined during the first loop (middlewareChanges event is\n // unnecessary during the first serve)\n if (currentEntrypoints.global.middleware && !middleware) {\n const key = getEntryKey('root', 'server', 'middleware')\n // Went from middleware to no middleware\n await dev?.hooks.unsubscribeFromChanges(key)\n currentEntryIssues.delete(key)\n dev.hooks.sendHmr('middleware', {\n type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,\n })\n } else if (!currentEntrypoints.global.middleware && middleware) {\n // Went from no middleware to middleware\n dev.hooks.sendHmr('middleware', {\n type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,\n })\n }\n\n currentEntrypoints.global.middleware = middleware\n\n if (instrumentation) {\n const processInstrumentation = async (\n name: string,\n prop: 'nodeJs' | 'edge'\n ) => {\n const prettyName = {\n nodeJs: 'Node.js',\n edge: 'Edge',\n }\n const finishBuilding = dev.hooks.startBuilding(\n `instrumentation ${prettyName[prop]}`,\n undefined,\n true\n )\n const key = getEntryKey('root', 'server', name)\n\n const writtenEndpoint = await instrumentation[prop].writeToDisk()\n dev.hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n finishBuilding()\n }\n await processInstrumentation('instrumentation.nodeJs', 'nodeJs')\n await processInstrumentation('instrumentation.edge', 'edge')\n await manifestLoader.loadMiddlewareManifest(\n 'instrumentation',\n 'instrumentation'\n )\n manifestLoader.writeManifests({\n devRewrites,\n productionRewrites: undefined,\n entrypoints: currentEntrypoints,\n })\n\n dev.serverFields.actualInstrumentationHookFile = '/instrumentation'\n await dev.hooks.propagateServerField(\n 'actualInstrumentationHookFile',\n dev.serverFields.actualInstrumentationHookFile\n )\n } else {\n dev.serverFields.actualInstrumentationHookFile = undefined\n await dev.hooks.propagateServerField(\n 'actualInstrumentationHookFile',\n dev.serverFields.actualInstrumentationHookFile\n )\n }\n\n if (middleware) {\n const key = getEntryKey('root', 'server', 'middleware')\n\n const endpoint = middleware.endpoint\n const triggerName = middleware.isProxy\n ? PROXY_FILENAME\n : MIDDLEWARE_FILENAME\n\n async function processMiddleware() {\n const finishBuilding = dev.hooks.startBuilding(\n triggerName,\n undefined,\n true\n )\n const writtenEndpoint = await endpoint.writeToDisk()\n dev.hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n await manifestLoader.loadMiddlewareManifest('middleware', 'middleware')\n const middlewareConfig =\n manifestLoader.getMiddlewareManifest(key)?.middleware['/']\n\n if (dev && middlewareConfig) {\n dev.serverFields.middleware = {\n match: null as any,\n page: '/',\n matchers: middlewareConfig.matchers,\n }\n }\n finishBuilding()\n }\n await processMiddleware()\n\n if (dev) {\n dev?.hooks.subscribeToChanges(\n key,\n false,\n endpoint,\n async () => {\n const finishBuilding = dev.hooks.startBuilding(\n triggerName,\n undefined,\n true\n )\n await processMiddleware()\n await dev.hooks.propagateServerField(\n 'actualMiddlewareFile',\n dev.serverFields.actualMiddlewareFile\n )\n await dev.hooks.propagateServerField(\n 'middleware',\n dev.serverFields.middleware\n )\n manifestLoader.writeManifests({\n devRewrites,\n productionRewrites: undefined,\n entrypoints: currentEntrypoints,\n })\n\n finishBuilding?.()\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,\n }\n },\n () => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.MIDDLEWARE_CHANGES,\n }\n }\n )\n }\n } else {\n manifestLoader.deleteMiddlewareManifest(\n getEntryKey('root', 'server', 'middleware')\n )\n dev.serverFields.actualMiddlewareFile = undefined\n dev.serverFields.middleware = undefined\n }\n\n await dev.hooks.propagateServerField(\n 'actualMiddlewareFile',\n dev.serverFields.actualMiddlewareFile\n )\n await dev.hooks.propagateServerField(\n 'middleware',\n dev.serverFields.middleware\n )\n}\n\nasync function handleEntrypointsDevCleanup({\n currentEntryIssues,\n currentEntrypoints,\n\n assetMapper,\n changeSubscriptions,\n clients,\n clientStates,\n\n hooks,\n}: {\n currentEntrypoints: Entrypoints\n currentEntryIssues: EntryIssuesMap\n} & HandleEntrypointsDevOpts) {\n // this needs to be first as `hasEntrypointForKey` uses the `assetMapper`\n for (const key of assetMapper.keys()) {\n if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {\n assetMapper.delete(key)\n }\n }\n\n for (const key of changeSubscriptions.keys()) {\n // middleware is handled separately\n if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {\n await hooks.unsubscribeFromChanges(key)\n }\n }\n\n for (const [key] of currentEntryIssues) {\n if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {\n currentEntryIssues.delete(key)\n }\n }\n\n for (const client of clients) {\n const state = clientStates.get(client)\n if (!state) {\n continue\n }\n\n for (const key of state.clientIssues.keys()) {\n if (!hasEntrypointForKey(currentEntrypoints, key, assetMapper)) {\n state.clientIssues.delete(key)\n }\n }\n\n for (const id of state.subscriptions.keys()) {\n if (\n !hasEntrypointForKey(\n currentEntrypoints,\n getEntryKey('assets', 'client', id),\n assetMapper\n )\n ) {\n hooks.unsubscribeFromHmrEvents(client, id)\n }\n }\n }\n}\n\nexport async function handlePagesErrorRoute({\n currentEntryIssues,\n entrypoints,\n manifestLoader,\n devRewrites,\n productionRewrites,\n logErrors,\n hooks,\n}: {\n currentEntryIssues: EntryIssuesMap\n entrypoints: Entrypoints\n manifestLoader: TurbopackManifestLoader\n devRewrites: SetupOpts['fsChecker']['rewrites'] | undefined\n productionRewrites: CustomRoutes['rewrites'] | undefined\n logErrors: boolean\n hooks: HandleRouteTypeHooks\n}) {\n if (entrypoints.global.app) {\n const key = getEntryKey('pages', 'server', '_app')\n\n const writtenEndpoint = await entrypoints.global.app.writeToDisk()\n hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n hooks.subscribeToChanges(\n key,\n false,\n entrypoints.global.app,\n () => {\n // There's a special case for this in `../client/page-bootstrap.ts`.\n // https://github.com/vercel/next.js/blob/08d7a7e5189a835f5dcb82af026174e587575c0e/packages/next/src/client/page-bootstrap.ts#L69-L71\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES,\n }\n },\n () => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: '_app has changed (error route)',\n }\n }\n )\n processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n }\n await manifestLoader.loadBuildManifest('_app')\n await manifestLoader.loadPagesManifest('_app')\n await manifestLoader.loadFontManifest('_app')\n\n if (entrypoints.global.document) {\n const key = getEntryKey('pages', 'server', '_document')\n\n const writtenEndpoint = await entrypoints.global.document.writeToDisk()\n hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n hooks.subscribeToChanges(\n key,\n false,\n entrypoints.global.document,\n () => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: '_document has changed (error route)',\n }\n },\n (e) => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: `error in _document subscription (error route): ${e}`,\n }\n }\n )\n processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n }\n await manifestLoader.loadPagesManifest('_document')\n\n if (entrypoints.global.error) {\n const key = getEntryKey('pages', 'server', '_error')\n\n const writtenEndpoint = await entrypoints.global.error.writeToDisk()\n hooks.handleWrittenEndpoint(key, writtenEndpoint, false)\n hooks.subscribeToChanges(\n key,\n false,\n entrypoints.global.error,\n () => {\n // There's a special case for this in `../client/page-bootstrap.ts`.\n // https://github.com/vercel/next.js/blob/08d7a7e5189a835f5dcb82af026174e587575c0e/packages/next/src/client/page-bootstrap.ts#L69-L71\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.CLIENT_CHANGES,\n }\n },\n (e) => {\n return {\n type: HMR_MESSAGE_SENT_TO_BROWSER.RELOAD_PAGE,\n data: `error in _error subscription: ${e}`,\n }\n }\n )\n processIssues(currentEntryIssues, key, writtenEndpoint, false, logErrors)\n }\n await manifestLoader.loadClientBuildManifest('_error')\n await manifestLoader.loadBuildManifest('_error')\n await manifestLoader.loadPagesManifest('_error')\n await manifestLoader.loadFontManifest('_error')\n\n manifestLoader.writeManifests({\n devRewrites,\n productionRewrites,\n entrypoints,\n })\n}\n\nexport function removeRouteSuffix(route: string): string {\n return route.replace(/\\/route$/, '')\n}\n\nexport function addRouteSuffix(route: string): string {\n return route + '/route'\n}\n\nexport function addMetadataIdToRoute(route: string): string {\n return route + '/[__metadata_id__]'\n}\n\n// Since turbopack will create app pages/route entries based on the structure,\n// which means the entry keys are based on file names.\n// But for special metadata conventions we'll change the page/pathname to a different path.\n// So we need this helper to map the new path back to original turbopack entry key.\nexport function normalizedPageToTurbopackStructureRoute(\n route: string,\n ext: string | false\n): string {\n let entrypointKey = route\n if (isMetadataRoute(entrypointKey)) {\n entrypointKey = entrypointKey.endsWith('/route')\n ? entrypointKey.slice(0, -'/route'.length)\n : entrypointKey\n\n if (ext) {\n if (entrypointKey.endsWith('/[__metadata_id__]')) {\n entrypointKey = entrypointKey.slice(0, -'/[__metadata_id__]'.length)\n }\n if (entrypointKey.endsWith('/sitemap.xml') && ext !== '.xml') {\n // For dynamic sitemap route, remove the extension\n entrypointKey = entrypointKey.slice(0, -'.xml'.length)\n }\n }\n entrypointKey = entrypointKey + '/route'\n }\n return entrypointKey\n}\n"],"names":["HMR_MESSAGE_SENT_TO_BROWSER","Log","getEntryKey","splitEntryKey","isMetadataRoute","formatIssue","getIssueKey","isRelevantWarning","processIssues","renderStyledStringToErrorAnsi","MIDDLEWARE_FILENAME","PROXY_FILENAME","onceErrorSet","Set","shouldEmitOnceWarning","issue","severity","title","stage","value","has","add","includes","printNonFatalIssue","warn","processTopLevelIssues","currentTopLevelIssues","result","clear","issues","issueKey","set","MILLISECONDS_IN_NANOSECOND","BigInt","msToNs","ms","Math","floor","handleRouteType","dev","page","pathname","route","currentEntryIssues","entrypoints","manifestLoader","readyIds","devRewrites","productionRewrites","hooks","logErrors","shouldCreateWebpackStats","process","env","TURBOPACK_STATS","type","clientKey","serverKey","documentOrAppChanged","global","app","key","writtenEndpoint","writeToDisk","handleWrittenEndpoint","loadBuildManifest","loadPagesManifest","document","htmlEndpoint","loadClientBuildManifest","loadMiddlewareManifest","deleteMiddlewareManifest","loadFontManifest","loadWebpackStats","writeManifests","subscribeToChanges","dataEndpoint","delete","SERVER_ONLY_CHANGES","pages","e","RELOAD_PAGE","data","CLIENT_CHANGES","endpoint","rscEndpoint","change","hash","some","SERVER_COMPONENT_CHANGES","loadAppPathsManifest","loadActionManifest","Error","AssetMapper","setPathsForKey","assetPaths","newAssetPaths","entryMap","assetPath","assetPathKeys","assetMap","get","getAssetPathsByKey","size","Array","from","getKeysByAsset","path","keys","Map","hasEntrypointForKey","assetMapper","error","middleware","instrumentation","pageKey","_","handleEntrypoints","currentEntrypoints","pagesAppEndpoint","pagesDocumentEndpoint","pagesErrorEndpoint","routes","forEach","originalName","info","handleEntrypointsDevCleanup","unsubscribeFromChanges","sendHmr","MIDDLEWARE_CHANGES","processInstrumentation","name","prop","prettyName","nodeJs","edge","finishBuilding","startBuilding","undefined","serverFields","actualInstrumentationHookFile","propagateServerField","triggerName","isProxy","processMiddleware","middlewareConfig","getMiddlewareManifest","match","matchers","actualMiddlewareFile","changeSubscriptions","clients","clientStates","client","state","clientIssues","id","subscriptions","unsubscribeFromHmrEvents","handlePagesErrorRoute","removeRouteSuffix","replace","addRouteSuffix","addMetadataIdToRoute","normalizedPageToTurbopackStructureRoute","ext","entrypointKey","endsWith","slice","length"],"mappings":"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","ignoreList":[0]}