| import type { NextConfigComplete } from '../config-shared' |
| import type { CustomRoutes } from '../../lib/load-custom-routes' |
| import type { Duplex } from 'stream' |
| import type { Telemetry } from '../../telemetry/storage' |
| import type { IncomingMessage, ServerResponse } from 'http' |
| import type { UrlObject } from 'url' |
| import type { RouteDefinition } from '../route-definitions/route-definition' |
|
|
| import { type webpack, StringXor } from 'next/dist/compiled/webpack/webpack' |
| import { |
| getOverlayMiddleware, |
| getSourceMapMiddleware, |
| } from './middleware-webpack' |
| import { WebpackHotMiddleware } from './hot-middleware' |
| import { join, relative, isAbsolute, posix, dirname } from 'path' |
| import { |
| createEntrypoints, |
| createPagesMapping, |
| finalizeEntrypoint, |
| getClientEntry, |
| getEdgeServerEntry, |
| getAppEntry, |
| runDependingOnPageType, |
| getStaticInfoIncludingLayouts, |
| getInstrumentationEntry, |
| } from '../../build/entries' |
| import { watchCompilers } from '../../build/output' |
| import * as Log from '../../build/output/log' |
| import getBaseWebpackConfig, { |
| getCacheDirectories, |
| loadProjectInfo, |
| } from '../../build/webpack-config' |
| import { APP_DIR_ALIAS, WEBPACK_LAYERS } from '../../lib/constants' |
| import { recursiveDelete } from '../../lib/recursive-delete' |
| import { |
| BLOCKED_PAGES, |
| CLIENT_STATIC_FILES_RUNTIME_AMP, |
| CLIENT_STATIC_FILES_RUNTIME_MAIN, |
| CLIENT_STATIC_FILES_RUNTIME_MAIN_APP, |
| CLIENT_STATIC_FILES_RUNTIME_REACT_REFRESH, |
| COMPILER_NAMES, |
| RSC_MODULE_TYPES, |
| } from '../../shared/lib/constants' |
| import type { __ApiPreviewProps } from '../api-utils' |
| import { getPathMatch } from '../../shared/lib/router/utils/path-match' |
| import { findPageFile } from '../lib/find-page-file' |
| import { |
| BUILDING, |
| getEntries, |
| EntryTypes, |
| getInvalidator, |
| onDemandEntryHandler, |
| } from './on-demand-entry-handler' |
| import { denormalizePagePath } from '../../shared/lib/page-path/denormalize-page-path' |
| import { normalizePathSep } from '../../shared/lib/page-path/normalize-path-sep' |
| import getRouteFromEntrypoint from '../get-route-from-entrypoint' |
| import { |
| difference, |
| isInstrumentationHookFile, |
| isMiddlewareFile, |
| isMiddlewareFilename, |
| } from '../../build/utils' |
| import { DecodeError } from '../../shared/lib/utils' |
| import { type Span, trace } from '../../trace' |
| import { getProperError } from '../../lib/is-error' |
| import ws from 'next/dist/compiled/ws' |
| import { existsSync, promises as fs } from 'fs' |
| import type { UnwrapPromise } from '../../lib/coalesced-function' |
| import { parseVersionInfo } from './parse-version-info' |
| import type { VersionInfo } from './parse-version-info' |
| import { isAPIRoute } from '../../lib/is-api-route' |
| import { getRouteLoaderEntry } from '../../build/webpack/loaders/next-route-loader' |
| import { |
| isInternalComponent, |
| isNonRoutePagesPage, |
| } from '../../lib/is-internal-component' |
| import { RouteKind } from '../route-kind' |
| import { |
| HMR_ACTIONS_SENT_TO_BROWSER, |
| type NextJsHotReloaderInterface, |
| } from './hot-reloader-types' |
| import type { HMR_ACTION_TYPES } from './hot-reloader-types' |
| import type { WebpackError } from 'webpack' |
| import { PAGE_TYPES } from '../../lib/page-types' |
| import { FAST_REFRESH_RUNTIME_RELOAD } from './messages' |
| import { getNodeDebugType } from '../lib/utils' |
| import { getNextErrorFeedbackMiddleware } from '../../next-devtools/server/get-next-error-feedback-middleware' |
| import { getDevOverlayFontMiddleware } from '../../next-devtools/server/font/get-dev-overlay-font-middleware' |
| import { getDisableDevIndicatorMiddleware } from '../../next-devtools/server/dev-indicator-middleware' |
| import getWebpackBundler from '../../shared/lib/get-webpack-bundler' |
| import { getRestartDevServerMiddleware } from '../../next-devtools/server/restart-dev-server-middleware' |
| import { checkPersistentCacheInvalidationAndCleanup } from '../../build/webpack/cache-invalidation' |
| import { receiveBrowserLogsWebpack } from './browser-logs/receive-logs' |
| import { |
| devToolsConfigMiddleware, |
| getDevToolsConfig, |
| } from '../../next-devtools/server/devtools-config-middleware' |
|
|
| const MILLISECONDS_IN_NANOSECOND = BigInt(1_000_000) |
|
|
| function diff(a: Set<any>, b: Set<any>) { |
| return new Set([...a].filter((v) => !b.has(v))) |
| } |
|
|
| const wsServer = new ws.Server({ noServer: true }) |
|
|
| export async function renderScriptError( |
| res: ServerResponse, |
| error: Error, |
| { verbose = true } = {} |
| ): Promise<{ finished: true | undefined }> { |
| |
| res.setHeader( |
| 'Cache-Control', |
| 'no-cache, no-store, max-age=0, must-revalidate' |
| ) |
|
|
| if ((error as any).code === 'ENOENT') { |
| return { finished: undefined } |
| } |
|
|
| if (verbose) { |
| console.error(error.stack) |
| } |
| res.statusCode = 500 |
| res.end('500 - Internal Error') |
| return { finished: true } |
| } |
|
|
| function addCorsSupport(req: IncomingMessage, res: ServerResponse) { |
| |
| if (!req.url!.startsWith('/__next')) { |
| return { preflight: false } |
| } |
|
|
| if (!req.headers.origin) { |
| return { preflight: false } |
| } |
|
|
| res.setHeader('Access-Control-Allow-Origin', req.headers.origin) |
| res.setHeader('Access-Control-Allow-Methods', 'OPTIONS, GET') |
| |
| if (req.headers['access-control-request-headers']) { |
| res.setHeader( |
| 'Access-Control-Allow-Headers', |
| req.headers['access-control-request-headers'] as string |
| ) |
| } |
|
|
| if (req.method === 'OPTIONS') { |
| res.writeHead(200) |
| res.end() |
| return { preflight: true } |
| } |
|
|
| return { preflight: false } |
| } |
|
|
| export const matchNextPageBundleRequest = getPathMatch( |
| '/_next/static/chunks/pages/:path*.js(\\.map|)' |
| ) |
|
|
| |
| function findEntryModule( |
| module: webpack.Module, |
| compilation: webpack.Compilation |
| ): any { |
| for (;;) { |
| const issuer = compilation.moduleGraph.getIssuer(module) |
| if (!issuer) return module |
| module = issuer |
| } |
| } |
|
|
| function erroredPages(compilation: webpack.Compilation) { |
| const failedPages: { [page: string]: WebpackError[] } = {} |
| for (const error of compilation.errors) { |
| if (!error.module) { |
| continue |
| } |
|
|
| const entryModule = findEntryModule(error.module, compilation) |
| const { name } = entryModule |
| if (!name) { |
| continue |
| } |
|
|
| |
| const enhancedName = getRouteFromEntrypoint(name) |
|
|
| if (!enhancedName) { |
| continue |
| } |
|
|
| if (!failedPages[enhancedName]) { |
| failedPages[enhancedName] = [] |
| } |
|
|
| failedPages[enhancedName].push(error) |
| } |
|
|
| return failedPages |
| } |
|
|
| export async function getVersionInfo(): Promise<VersionInfo> { |
| let installed = '0.0.0' |
|
|
| try { |
| installed = require('next/package.json').version |
|
|
| let res |
|
|
| try { |
| |
| res = await fetch('https://registry.npmjs.org/-/package/next/dist-tags') |
| } catch { |
| |
| } |
|
|
| if (!res || !res.ok) return { installed, staleness: 'unknown' } |
|
|
| const { latest, canary } = await res.json() |
|
|
| return parseVersionInfo({ installed, latest, canary }) |
| } catch (e: any) { |
| console.error(e) |
| return { installed, staleness: 'unknown' } |
| } |
| } |
|
|
| export default class HotReloaderWebpack implements NextJsHotReloaderInterface { |
| private hasAmpEntrypoints: boolean |
| private hasAppRouterEntrypoints: boolean |
| private hasPagesRouterEntrypoints: boolean |
| private dir: string |
| private buildId: string |
| private encryptionKey: string |
| private middlewares: (( |
| req: IncomingMessage, |
| res: ServerResponse, |
| next: () => void |
| ) => Promise<void>)[] |
| private pagesDir?: string |
| private distDir: string |
| private webpackHotMiddleware?: WebpackHotMiddleware |
| private config: NextConfigComplete |
| private clientStats: webpack.Stats | null |
| private clientError: Error | null = null |
| private serverError: Error | null = null |
| private hmrServerError: Error | null = null |
| private serverPrevDocumentHash: string | null |
| private serverChunkNames?: Set<string> |
| private prevChunkNames?: Set<any> |
| private onDemandEntries?: ReturnType<typeof onDemandEntryHandler> |
| private previewProps: __ApiPreviewProps |
| private watcher: any |
| private rewrites: CustomRoutes['rewrites'] |
| private fallbackWatcher: any |
| private hotReloaderSpan: Span |
| private pagesMapping: { [key: string]: string } = {} |
| private appDir?: string |
| private telemetry: Telemetry |
| private resetFetch: () => void |
| private versionInfo: VersionInfo = { |
| staleness: 'unknown', |
| installed: '0.0.0', |
| } |
| private devtoolsFrontendUrl: string | undefined |
| private reloadAfterInvalidation: boolean = false |
| private isSrcDir: boolean |
|
|
| public serverStats: webpack.Stats | null |
| public edgeServerStats: webpack.Stats | null |
| public multiCompiler?: webpack.MultiCompiler |
| public activeWebpackConfigs?: Array< |
| UnwrapPromise<ReturnType<typeof getBaseWebpackConfig>> |
| > |
|
|
| constructor( |
| dir: string, |
| { |
| config, |
| isSrcDir, |
| pagesDir, |
| distDir, |
| buildId, |
| encryptionKey, |
| previewProps, |
| rewrites, |
| appDir, |
| telemetry, |
| resetFetch, |
| }: { |
| config: NextConfigComplete |
| isSrcDir: boolean |
| pagesDir?: string |
| distDir: string |
| buildId: string |
| encryptionKey: string |
| previewProps: __ApiPreviewProps |
| rewrites: CustomRoutes['rewrites'] |
| appDir?: string |
| telemetry: Telemetry |
| resetFetch: () => void |
| } |
| ) { |
| this.hasAmpEntrypoints = false |
| this.hasAppRouterEntrypoints = false |
| this.hasPagesRouterEntrypoints = false |
| this.buildId = buildId |
| this.encryptionKey = encryptionKey |
| this.dir = dir |
| this.isSrcDir = isSrcDir |
| this.middlewares = [] |
| this.pagesDir = pagesDir |
| this.appDir = appDir |
| this.distDir = distDir |
| this.clientStats = null |
| this.serverStats = null |
| this.edgeServerStats = null |
| this.serverPrevDocumentHash = null |
| this.telemetry = telemetry |
| this.resetFetch = resetFetch |
|
|
| this.config = config |
| this.previewProps = previewProps |
| this.rewrites = rewrites |
| this.hotReloaderSpan = trace('hot-reloader', undefined, { |
| version: process.env.__NEXT_VERSION as string, |
| }) |
| |
| |
| this.hotReloaderSpan.stop() |
| } |
|
|
| public async run( |
| req: IncomingMessage, |
| res: ServerResponse, |
| parsedUrl: UrlObject |
| ): Promise<{ finished?: true }> { |
| |
| |
| |
| |
| const { preflight } = addCorsSupport(req, res) |
| if (preflight) { |
| return {} |
| } |
|
|
| |
| |
| |
| |
| const handlePageBundleRequest = async ( |
| pageBundleRes: ServerResponse, |
| parsedPageBundleUrl: UrlObject |
| ): Promise<{ finished?: true }> => { |
| const { pathname } = parsedPageBundleUrl |
| if (!pathname) return {} |
|
|
| const params = matchNextPageBundleRequest(pathname) |
| if (!params) return {} |
|
|
| let decodedPagePath: string |
|
|
| try { |
| decodedPagePath = `/${params.path |
| .map((param: string) => decodeURIComponent(param)) |
| .join('/')}` |
| } catch (_) { |
| throw new DecodeError('failed to decode param') |
| } |
|
|
| const page = denormalizePagePath(decodedPagePath) |
|
|
| if (page === '/_error' || BLOCKED_PAGES.indexOf(page) === -1) { |
| try { |
| await this.ensurePage({ page, clientOnly: true, url: req.url }) |
| } catch (error) { |
| return await renderScriptError(pageBundleRes, getProperError(error)) |
| } |
|
|
| const errors = await this.getCompilationErrors(page) |
| if (errors.length > 0) { |
| return await renderScriptError(pageBundleRes, errors[0], { |
| verbose: false, |
| }) |
| } |
| } |
|
|
| return {} |
| } |
|
|
| const { finished } = await handlePageBundleRequest(res, parsedUrl) |
|
|
| for (const middleware of this.middlewares) { |
| let calledNext = false |
|
|
| await middleware(req, res, () => { |
| calledNext = true |
| }) |
|
|
| if (!calledNext) { |
| return { finished: true } |
| } |
| } |
|
|
| return { finished } |
| } |
|
|
| public setHmrServerError(error: Error | null): void { |
| this.hmrServerError = error |
| } |
|
|
| public clearHmrServerError(): void { |
| if (this.hmrServerError) { |
| this.setHmrServerError(null) |
| this.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE, |
| data: 'clear hmr server error', |
| }) |
| } |
| } |
|
|
| protected async refreshServerComponents(hash: string): Promise<void> { |
| this.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.SERVER_COMPONENT_CHANGES, |
| hash, |
| |
| |
| }) |
| } |
|
|
| public onHMR( |
| req: IncomingMessage, |
| _socket: Duplex, |
| head: Buffer, |
| callback: (client: ws.WebSocket) => void |
| ) { |
| wsServer.handleUpgrade(req, req.socket, head, (client) => { |
| this.webpackHotMiddleware?.onHMR(client) |
| this.onDemandEntries?.onHMR(client, () => this.hmrServerError) |
| callback(client) |
|
|
| client.addEventListener('message', async ({ data }) => { |
| data = typeof data !== 'string' ? data.toString() : data |
|
|
| try { |
| const payload = JSON.parse(data) |
|
|
| let traceChild: |
| | { |
| name: string |
| startTime?: bigint |
| endTime?: bigint |
| attrs?: Record<string, number | string | undefined | string[]> |
| } |
| | undefined |
|
|
| switch (payload.event) { |
| case 'span-end': { |
| traceChild = { |
| name: payload.spanName, |
| startTime: |
| BigInt(Math.floor(payload.startTime)) * |
| MILLISECONDS_IN_NANOSECOND, |
| attrs: payload.attributes, |
| endTime: |
| BigInt(Math.floor(payload.endTime)) * |
| MILLISECONDS_IN_NANOSECOND, |
| } |
| break |
| } |
| case 'client-hmr-latency': { |
| traceChild = { |
| name: payload.event, |
| startTime: |
| BigInt(payload.startTime) * MILLISECONDS_IN_NANOSECOND, |
| endTime: BigInt(payload.endTime) * MILLISECONDS_IN_NANOSECOND, |
| attrs: { |
| updatedModules: payload.updatedModules.map((m: string) => |
| m |
| .replace(`(${WEBPACK_LAYERS.appPagesBrowser})/`, '') |
| .replace(/^\.\//, '[project]/') |
| ), |
| page: payload.page, |
| isPageHidden: payload.isPageHidden, |
| }, |
| } |
| break |
| } |
| case 'client-reload-page': |
| case 'client-success': { |
| traceChild = { |
| name: payload.event, |
| } |
| break |
| } |
| case 'client-error': { |
| traceChild = { |
| name: payload.event, |
| attrs: { errorCount: payload.errorCount }, |
| } |
| break |
| } |
| case 'client-warning': { |
| traceChild = { |
| name: payload.event, |
| attrs: { warningCount: payload.warningCount }, |
| } |
| break |
| } |
| case 'client-removed-page': |
| case 'client-added-page': { |
| traceChild = { |
| name: payload.event, |
| attrs: { page: payload.page || '' }, |
| } |
| break |
| } |
| case 'client-full-reload': { |
| const { event, stackTrace, hadRuntimeError } = payload |
|
|
| traceChild = { |
| name: event, |
| attrs: { stackTrace: stackTrace ?? '' }, |
| } |
|
|
| if (hadRuntimeError) { |
| Log.warn(FAST_REFRESH_RUNTIME_RELOAD) |
| break |
| } |
|
|
| let fileMessage = '' |
| if (stackTrace) { |
| const file = /Aborted because (.+) is not accepted/.exec( |
| stackTrace |
| )?.[1] |
| if (file) { |
| |
| |
| if (file.startsWith(`(${WEBPACK_LAYERS.appPagesBrowser})/`)) { |
| const fileUrl = new URL(file, 'file://') |
| const cwd = process.cwd() |
| const modules = fileUrl.searchParams |
| .getAll('modules') |
| .map((filepath) => filepath.slice(cwd.length + 1)) |
| .filter( |
| (filepath) => !filepath.startsWith('node_modules') |
| ) |
|
|
| if (modules.length > 0) { |
| fileMessage = ` when ${modules.join(', ')} changed` |
| } |
| } else if ( |
| |
| file.startsWith(`(${WEBPACK_LAYERS.pagesDirBrowser})/`) |
| ) { |
| const cleanedFilePath = file.slice( |
| `(${WEBPACK_LAYERS.pagesDirBrowser})/`.length |
| ) |
|
|
| fileMessage = ` when ${cleanedFilePath} changed` |
| } else { |
| fileMessage = ` when ${file} changed` |
| } |
| } |
| } |
|
|
| Log.warn( |
| `Fast Refresh had to perform a full reload${fileMessage}. Read more: https://nextjs.org/docs/messages/fast-refresh-reload` |
| ) |
| break |
| } |
| case 'browser-logs': { |
| if (this.config.experimental.browserDebugInfoInTerminal) { |
| await receiveBrowserLogsWebpack({ |
| entries: payload.entries, |
| router: payload.router, |
| sourceType: payload.sourceType, |
| clientStats: () => this.clientStats, |
| serverStats: () => this.serverStats, |
| edgeServerStats: () => this.edgeServerStats, |
| rootDirectory: this.dir, |
| distDir: this.distDir, |
| config: this.config.experimental.browserDebugInfoInTerminal, |
| }) |
| } |
| break |
| } |
| default: { |
| break |
| } |
| } |
|
|
| if (traceChild) { |
| this.hotReloaderSpan.manualTraceChild( |
| traceChild.name, |
| traceChild.startTime, |
| traceChild.endTime, |
| { ...traceChild.attrs, clientId: payload.id } |
| ) |
| } |
| } catch (_) { |
| |
| } |
| }) |
| }) |
| } |
|
|
| private async clean(span: Span): Promise<void> { |
| return span |
| .traceChild('clean') |
| .traceAsyncFn(() => |
| recursiveDelete(join(this.dir, this.config.distDir), /^cache/) |
| ) |
| } |
|
|
| private async getWebpackConfig(span: Span) { |
| const webpackConfigSpan = span.traceChild('get-webpack-config') |
|
|
| const pageExtensions = this.config.pageExtensions |
|
|
| return webpackConfigSpan.traceAsyncFn(async () => { |
| const pagePaths = !this.pagesDir |
| ? ([] as (string | null)[]) |
| : await webpackConfigSpan |
| .traceChild('get-page-paths') |
| .traceAsyncFn(() => |
| Promise.all([ |
| findPageFile(this.pagesDir!, '/_app', pageExtensions, false), |
| findPageFile( |
| this.pagesDir!, |
| '/_document', |
| pageExtensions, |
| false |
| ), |
| ]) |
| ) |
|
|
| this.pagesMapping = await webpackConfigSpan |
| .traceChild('create-pages-mapping') |
| .traceAsyncFn(() => |
| createPagesMapping({ |
| isDev: true, |
| pageExtensions: this.config.pageExtensions, |
| pagesType: PAGE_TYPES.PAGES, |
| pagePaths: pagePaths.filter( |
| (i: string | null): i is string => typeof i === 'string' |
| ), |
| pagesDir: this.pagesDir, |
| appDir: this.appDir, |
| }) |
| ) |
|
|
| const entrypoints = await webpackConfigSpan |
| .traceChild('create-entrypoints') |
| .traceAsyncFn(() => |
| createEntrypoints({ |
| appDir: this.appDir, |
| buildId: this.buildId, |
| config: this.config, |
| envFiles: [], |
| isDev: true, |
| pages: this.pagesMapping, |
| pagesDir: this.pagesDir, |
| previewMode: this.previewProps, |
| rootDir: this.dir, |
| pageExtensions: this.config.pageExtensions, |
| }) |
| ) |
|
|
| const commonWebpackOptions = { |
| dev: true, |
| buildId: this.buildId, |
| encryptionKey: this.encryptionKey, |
| config: this.config, |
| pagesDir: this.pagesDir, |
| rewrites: this.rewrites, |
| originalRewrites: this.config._originalRewrites, |
| originalRedirects: this.config._originalRedirects, |
| runWebpackSpan: this.hotReloaderSpan, |
| appDir: this.appDir, |
| previewProps: this.previewProps, |
| } |
|
|
| return webpackConfigSpan |
| .traceChild('generate-webpack-config') |
| .traceAsyncFn(async () => { |
| const info = await loadProjectInfo({ |
| dir: this.dir, |
| config: commonWebpackOptions.config, |
| dev: true, |
| }) |
| return Promise.all([ |
| |
| getBaseWebpackConfig(this.dir, { |
| ...commonWebpackOptions, |
| compilerType: COMPILER_NAMES.client, |
| entrypoints: entrypoints.client, |
| ...info, |
| }), |
| getBaseWebpackConfig(this.dir, { |
| ...commonWebpackOptions, |
| compilerType: COMPILER_NAMES.server, |
| entrypoints: entrypoints.server, |
| ...info, |
| }), |
| getBaseWebpackConfig(this.dir, { |
| ...commonWebpackOptions, |
| compilerType: COMPILER_NAMES.edgeServer, |
| entrypoints: entrypoints.edgeServer, |
| ...info, |
| }), |
| ]) |
| }) |
| }) |
| } |
|
|
| public async buildFallbackError(): Promise<void> { |
| if (this.fallbackWatcher) return |
|
|
| const info = await loadProjectInfo({ |
| dir: this.dir, |
| config: this.config, |
| dev: true, |
| }) |
| const fallbackConfig = await getBaseWebpackConfig(this.dir, { |
| previewProps: this.previewProps, |
| runWebpackSpan: this.hotReloaderSpan, |
| dev: true, |
| compilerType: COMPILER_NAMES.client, |
| config: this.config, |
| buildId: this.buildId, |
| encryptionKey: this.encryptionKey, |
| appDir: this.appDir, |
| pagesDir: this.pagesDir, |
| rewrites: { |
| beforeFiles: [], |
| afterFiles: [], |
| fallback: [], |
| }, |
| originalRewrites: { |
| beforeFiles: [], |
| afterFiles: [], |
| fallback: [], |
| }, |
| originalRedirects: [], |
| isDevFallback: true, |
| entrypoints: ( |
| await createEntrypoints({ |
| appDir: this.appDir, |
| buildId: this.buildId, |
| config: this.config, |
| envFiles: [], |
| isDev: true, |
| pages: { |
| '/_app': 'next/dist/pages/_app', |
| '/_error': 'next/dist/pages/_error', |
| }, |
| pagesDir: this.pagesDir, |
| previewMode: this.previewProps, |
| rootDir: this.dir, |
| pageExtensions: this.config.pageExtensions, |
| }) |
| ).client, |
| ...info, |
| }) |
|
|
| const fallbackCompiler = getWebpackBundler()(fallbackConfig) |
|
|
| this.fallbackWatcher = await new Promise((resolve) => { |
| let bootedFallbackCompiler = false |
| fallbackCompiler.watch( |
| |
| fallbackConfig.watchOptions, |
| |
| (_err: any) => { |
| if (!bootedFallbackCompiler) { |
| bootedFallbackCompiler = true |
| resolve(true) |
| } |
| } |
| ) |
| }) |
| } |
|
|
| private async tracedGetVersionInfo(span: Span) { |
| const versionInfoSpan = span.traceChild('get-version-info') |
| return versionInfoSpan.traceAsyncFn<VersionInfo>(async () => |
| getVersionInfo() |
| ) |
| } |
|
|
| public async start(): Promise<void> { |
| const startSpan = this.hotReloaderSpan.traceChild('start') |
| startSpan.stop() |
|
|
| this.versionInfo = await this.tracedGetVersionInfo(startSpan) |
|
|
| const nodeDebugType = getNodeDebugType() |
| if (nodeDebugType && !this.devtoolsFrontendUrl) { |
| const debugPort = process.debugPort |
| let debugInfo |
| try { |
| |
| const debugInfoList = await fetch( |
| `http://127.0.0.1:${debugPort}/json/list` |
| ).then((res) => res.json()) |
| |
| debugInfo = debugInfoList[0] |
| } catch {} |
| if (debugInfo) { |
| this.devtoolsFrontendUrl = debugInfo.devtoolsFrontendUrl |
| } |
| } |
|
|
| await this.clean(startSpan) |
| |
| await fs.mkdir(this.distDir, { recursive: true }) |
|
|
| const initialDevToolsConfig = await getDevToolsConfig(this.distDir) |
|
|
| const distPackageJsonPath = join(this.distDir, 'package.json') |
| |
| |
| await fs.writeFile(distPackageJsonPath, '{"type": "commonjs"}') |
|
|
| this.activeWebpackConfigs = await this.getWebpackConfig(startSpan) |
|
|
| for (const config of this.activeWebpackConfigs) { |
| const defaultEntry = config.entry |
| config.entry = async (...args) => { |
| const outputPath = this.multiCompiler?.outputPath || '' |
| const entries = getEntries(outputPath) |
| |
| const entrypoints = await defaultEntry(...args) |
| const isClientCompilation = config.name === COMPILER_NAMES.client |
| const isNodeServerCompilation = config.name === COMPILER_NAMES.server |
| const isEdgeServerCompilation = |
| config.name === COMPILER_NAMES.edgeServer |
|
|
| await Promise.all( |
| Object.keys(entries).map(async (entryKey) => { |
| const entryData = entries[entryKey] |
| const { bundlePath, dispose } = entryData |
|
|
| const result = |
| /^(client|server|edge-server)@(app|pages|root)@(.*)/g.exec( |
| entryKey |
| ) |
| const [, key , , page] = result! |
|
|
| if (key === COMPILER_NAMES.client && !isClientCompilation) return |
| if (key === COMPILER_NAMES.server && !isNodeServerCompilation) |
| return |
| if (key === COMPILER_NAMES.edgeServer && !isEdgeServerCompilation) |
| return |
|
|
| const isEntry = entryData.type === EntryTypes.ENTRY |
| const isChildEntry = entryData.type === EntryTypes.CHILD_ENTRY |
|
|
| |
| if (isEntry) { |
| const pageExists = |
| !dispose && existsSync(entryData.absolutePagePath) |
| if (!pageExists) { |
| delete entries[entryKey] |
| return |
| } |
| } |
|
|
| |
| if (isChildEntry) { |
| if (entryData.absoluteEntryFilePath) { |
| const pageExists = |
| !dispose && existsSync(entryData.absoluteEntryFilePath) |
| if (!pageExists) { |
| delete entries[entryKey] |
| return |
| } |
| } |
| } |
|
|
| |
| if (page === '/_error') { |
| this.hasPagesRouterEntrypoints = true |
| } |
|
|
| const hasAppDir = !!this.appDir |
| const isAppPath = hasAppDir && bundlePath.startsWith('app/') |
| const staticInfo = isEntry |
| ? await getStaticInfoIncludingLayouts({ |
| isInsideAppDir: isAppPath, |
| pageExtensions: this.config.pageExtensions, |
| pageFilePath: entryData.absolutePagePath, |
| appDir: this.appDir, |
| config: this.config, |
| isDev: true, |
| page, |
| }) |
| : undefined |
|
|
| if (staticInfo?.type === PAGE_TYPES.PAGES) { |
| if ( |
| staticInfo.config?.config?.amp === true || |
| staticInfo.config?.config?.amp === 'hybrid' |
| ) { |
| this.hasAmpEntrypoints = true |
| } |
| } |
|
|
| const isServerComponent = |
| isAppPath && staticInfo?.rsc !== RSC_MODULE_TYPES.client |
|
|
| const pageType: PAGE_TYPES = entryData.bundlePath.startsWith( |
| 'pages/' |
| ) |
| ? PAGE_TYPES.PAGES |
| : entryData.bundlePath.startsWith('app/') |
| ? PAGE_TYPES.APP |
| : PAGE_TYPES.ROOT |
|
|
| if (pageType === 'pages') { |
| this.hasPagesRouterEntrypoints = true |
| } |
| if (pageType === 'app') { |
| this.hasAppRouterEntrypoints = true |
| } |
|
|
| const isInstrumentation = |
| isInstrumentationHookFile(page) && pageType === PAGE_TYPES.ROOT |
|
|
| let pageRuntime = staticInfo?.runtime |
|
|
| runDependingOnPageType({ |
| page, |
| pageRuntime, |
| pageType, |
| onEdgeServer: () => { |
| |
| if (!isEdgeServerCompilation || !isEntry) return |
| entries[entryKey].status = BUILDING |
|
|
| if (isInstrumentation) { |
| const normalizedBundlePath = bundlePath.replace('src/', '') |
| entrypoints[normalizedBundlePath] = finalizeEntrypoint({ |
| compilerType: COMPILER_NAMES.edgeServer, |
| name: normalizedBundlePath, |
| value: getInstrumentationEntry({ |
| absolutePagePath: entryData.absolutePagePath, |
| isEdgeServer: true, |
| isDev: true, |
| }), |
| isServerComponent: true, |
| hasAppDir, |
| }) |
| return |
| } |
| const appDirLoader = isAppPath |
| ? getAppEntry({ |
| name: bundlePath, |
| page, |
| appPaths: entryData.appPaths, |
| pagePath: posix.join( |
| APP_DIR_ALIAS, |
| relative( |
| this.appDir!, |
| entryData.absolutePagePath |
| ).replace(/\\/g, '/') |
| ), |
| appDir: this.appDir!, |
| pageExtensions: this.config.pageExtensions, |
| rootDir: this.dir, |
| isDev: true, |
| tsconfigPath: this.config.typescript.tsconfigPath, |
| basePath: this.config.basePath, |
| assetPrefix: this.config.assetPrefix, |
| nextConfigOutput: this.config.output, |
| preferredRegion: staticInfo?.preferredRegion, |
| middlewareConfig: Buffer.from( |
| JSON.stringify(staticInfo?.middleware || {}) |
| ).toString('base64'), |
| isGlobalNotFoundEnabled: this.config.experimental |
| .globalNotFound |
| ? true |
| : undefined, |
| }).import |
| : undefined |
|
|
| entrypoints[bundlePath] = finalizeEntrypoint({ |
| compilerType: COMPILER_NAMES.edgeServer, |
| name: bundlePath, |
| value: getEdgeServerEntry({ |
| absolutePagePath: entryData.absolutePagePath, |
| rootDir: this.dir, |
| buildId: this.buildId, |
| bundlePath, |
| config: this.config, |
| isDev: true, |
| page, |
| pages: this.pagesMapping, |
| isServerComponent, |
| appDirLoader, |
| pagesType: isAppPath ? PAGE_TYPES.APP : PAGE_TYPES.PAGES, |
| preferredRegion: staticInfo?.preferredRegion, |
| }), |
| hasAppDir, |
| }) |
| }, |
| onClient: () => { |
| if (!isClientCompilation) return |
| if (isChildEntry) { |
| entries[entryKey].status = BUILDING |
| entrypoints[bundlePath] = finalizeEntrypoint({ |
| name: bundlePath, |
| compilerType: COMPILER_NAMES.client, |
| value: entryData.request, |
| hasAppDir, |
| }) |
| } else { |
| entries[entryKey].status = BUILDING |
| entrypoints[bundlePath] = finalizeEntrypoint({ |
| name: bundlePath, |
| compilerType: COMPILER_NAMES.client, |
| value: getClientEntry({ |
| absolutePagePath: entryData.absolutePagePath, |
| page, |
| }), |
| hasAppDir, |
| }) |
| } |
| }, |
| onServer: () => { |
| |
| if (!isNodeServerCompilation || !isEntry) return |
| entries[entryKey].status = BUILDING |
| let relativeRequest = relative( |
| config.context!, |
| entryData.absolutePagePath |
| ) |
| if ( |
| !isAbsolute(relativeRequest) && |
| !relativeRequest.startsWith('../') |
| ) { |
| relativeRequest = `./${relativeRequest}` |
| } |
|
|
| let value: { import: string; layer?: string } | string |
| if (isInstrumentation) { |
| value = getInstrumentationEntry({ |
| absolutePagePath: entryData.absolutePagePath, |
| isEdgeServer: false, |
| isDev: true, |
| }) |
| entrypoints[bundlePath] = finalizeEntrypoint({ |
| compilerType: COMPILER_NAMES.server, |
| name: bundlePath, |
| isServerComponent: true, |
| value, |
| hasAppDir, |
| }) |
| } else if (isMiddlewareFile(page)) { |
| value = getEdgeServerEntry({ |
| absolutePagePath: entryData.absolutePagePath, |
| rootDir: this.dir, |
| buildId: this.buildId, |
| bundlePath, |
| config: this.config, |
| isDev: true, |
| page, |
| pages: this.pagesMapping, |
| isServerComponent, |
| pagesType: PAGE_TYPES.PAGES, |
| preferredRegion: staticInfo?.preferredRegion, |
| }) |
| } else if (isAppPath) { |
| |
| const pagePath = entryData.absolutePagePath.startsWith( |
| dirname(require.resolve('next/package.json')) |
| ) |
| ? entryData.absolutePagePath |
| : posix.join( |
| APP_DIR_ALIAS, |
| relative( |
| this.appDir!, |
| entryData.absolutePagePath |
| ).replace(/\\/g, '/') |
| ) |
| value = getAppEntry({ |
| name: bundlePath, |
| page, |
| appPaths: entryData.appPaths, |
| pagePath, |
| appDir: this.appDir!, |
| pageExtensions: this.config.pageExtensions, |
| rootDir: this.dir, |
| isDev: true, |
| tsconfigPath: this.config.typescript.tsconfigPath, |
| basePath: this.config.basePath, |
| assetPrefix: this.config.assetPrefix, |
| nextConfigOutput: this.config.output, |
| preferredRegion: staticInfo?.preferredRegion, |
| middlewareConfig: Buffer.from( |
| JSON.stringify(staticInfo?.middleware || {}) |
| ).toString('base64'), |
| isGlobalNotFoundEnabled: this.config.experimental |
| .globalNotFound |
| ? true |
| : undefined, |
| }) |
| } else if (isAPIRoute(page)) { |
| value = getRouteLoaderEntry({ |
| kind: RouteKind.PAGES_API, |
| page, |
| absolutePagePath: relativeRequest, |
| preferredRegion: staticInfo?.preferredRegion, |
| middlewareConfig: staticInfo?.middleware || {}, |
| }) |
| } else if ( |
| !isMiddlewareFile(page) && |
| !isInternalComponent(relativeRequest) && |
| !isNonRoutePagesPage(page) && |
| !isInstrumentation |
| ) { |
| value = getRouteLoaderEntry({ |
| kind: RouteKind.PAGES, |
| page, |
| pages: this.pagesMapping, |
| absolutePagePath: relativeRequest, |
| preferredRegion: staticInfo?.preferredRegion, |
| middlewareConfig: staticInfo?.middleware ?? {}, |
| }) |
| } else { |
| value = relativeRequest |
| } |
|
|
| entrypoints[bundlePath] = finalizeEntrypoint({ |
| compilerType: COMPILER_NAMES.server, |
| name: bundlePath, |
| isServerComponent, |
| value, |
| hasAppDir, |
| }) |
| }, |
| }) |
| }) |
| ) |
|
|
| if (!this.hasAmpEntrypoints) { |
| delete entrypoints[CLIENT_STATIC_FILES_RUNTIME_AMP] |
| } |
| if (!this.hasPagesRouterEntrypoints) { |
| delete entrypoints[CLIENT_STATIC_FILES_RUNTIME_MAIN] |
| delete entrypoints['pages/_app'] |
| delete entrypoints['pages/_error'] |
| delete entrypoints['/_error'] |
| delete entrypoints['pages/_document'] |
| } |
| |
| if (!this.hasAmpEntrypoints && !this.hasPagesRouterEntrypoints) { |
| delete entrypoints[CLIENT_STATIC_FILES_RUNTIME_REACT_REFRESH] |
| } |
| if (!this.hasAppRouterEntrypoints) { |
| delete entrypoints[CLIENT_STATIC_FILES_RUNTIME_MAIN_APP] |
| } |
|
|
| return entrypoints |
| } |
| } |
|
|
| |
| |
| this.activeWebpackConfigs.parallelism = 1 |
|
|
| await Promise.all( |
| Array.from(getCacheDirectories(this.activeWebpackConfigs)).map( |
| checkPersistentCacheInvalidationAndCleanup |
| ) |
| ) |
| this.multiCompiler = getWebpackBundler()( |
| this.activeWebpackConfigs |
| ) as unknown as webpack.MultiCompiler |
|
|
| |
| const inputFileSystem = this.multiCompiler.compilers[0].inputFileSystem |
| for (const compiler of this.multiCompiler.compilers) { |
| compiler.inputFileSystem = inputFileSystem |
| |
| compiler.fsStartTime = Date.now() |
| |
| compiler.hooks.beforeRun.intercept({ |
| register(tapInfo: any) { |
| if (tapInfo.name === 'NodeEnvironmentPlugin') { |
| return null |
| } |
| return tapInfo |
| }, |
| }) |
| } |
|
|
| this.multiCompiler.hooks.done.tap('NextjsHotReloader', () => { |
| inputFileSystem?.purge?.() |
| }) |
| watchCompilers( |
| this.multiCompiler.compilers[0], |
| this.multiCompiler.compilers[1], |
| this.multiCompiler.compilers[2] |
| ) |
|
|
| |
| |
| const changedClientPages = new Set<string>() |
| const changedServerPages = new Set<string>() |
| const changedEdgeServerPages = new Set<string>() |
|
|
| const changedServerComponentPages = new Set<string>() |
| const changedCSSImportPages = new Set<string>() |
|
|
| const prevClientPageHashes = new Map<string, string>() |
| const prevServerPageHashes = new Map<string, string>() |
| const prevEdgeServerPageHashes = new Map<string, string>() |
| const prevCSSImportModuleHashes = new Map<string, string>() |
|
|
| const pageExtensionRegex = new RegExp( |
| `\\.(?:${this.config.pageExtensions.join('|')})$` |
| ) |
|
|
| const trackPageChanges = |
| ( |
| pageHashMap: Map<string, string>, |
| changedItems: Set<string>, |
| serverComponentChangedItems?: Set<string> |
| ) => |
| (stats: webpack.Compilation) => { |
| try { |
| stats.entrypoints.forEach((entry, key) => { |
| if ( |
| key.startsWith('pages/') || |
| key.startsWith('app/') || |
| isMiddlewareFilename(key) |
| ) { |
| |
| entry.chunks.forEach((chunk) => { |
| if (chunk.id === key) { |
| const modsIterable: any = |
| stats.chunkGraph.getChunkModulesIterable(chunk) |
|
|
| let hasCSSModuleChanges = false |
| let chunksHash = new StringXor() |
| let chunksHashServerLayer = new StringXor() |
|
|
| modsIterable.forEach((mod: any) => { |
| if ( |
| mod.resource && |
| mod.resource.replace(/\\/g, '/').includes(key) && |
| |
| pageExtensionRegex.test(mod.resource) |
| ) { |
| |
| |
| |
| |
| const hash = ( |
| require('crypto') as typeof import('crypto') |
| ) |
| .createHash('sha1') |
| .update(mod.originalSource().buffer()) |
| .digest() |
| .toString('hex') |
|
|
| if ( |
| mod.layer === WEBPACK_LAYERS.reactServerComponents && |
| mod?.buildInfo?.rsc?.type !== 'client' |
| ) { |
| chunksHashServerLayer.add(hash) |
| } |
|
|
| chunksHash.add(hash) |
| } else { |
| |
| const hash = stats.chunkGraph.getModuleHash( |
| mod, |
| chunk.runtime |
| ) |
|
|
| if ( |
| mod.layer === WEBPACK_LAYERS.reactServerComponents && |
| mod?.buildInfo?.rsc?.type !== 'client' |
| ) { |
| chunksHashServerLayer.add(hash) |
| } |
|
|
| chunksHash.add(hash) |
|
|
| |
| |
| if ( |
| key.startsWith('app/') && |
| /\.(css|scss|sass)$/.test(mod.resource || '') |
| ) { |
| const resourceKey = mod.layer + ':' + mod.resource |
| const prevHash = |
| prevCSSImportModuleHashes.get(resourceKey) |
| if (prevHash && prevHash !== hash) { |
| hasCSSModuleChanges = true |
| } |
| prevCSSImportModuleHashes.set(resourceKey, hash) |
| } |
| } |
| }) |
|
|
| const prevHash = pageHashMap.get(key) |
| const curHash = chunksHash.toString() |
| if (prevHash && prevHash !== curHash) { |
| changedItems.add(key) |
| } |
| pageHashMap.set(key, curHash) |
|
|
| if (serverComponentChangedItems) { |
| const serverKey = |
| WEBPACK_LAYERS.reactServerComponents + ':' + key |
| const prevServerHash = pageHashMap.get(serverKey) |
| const curServerHash = chunksHashServerLayer.toString() |
| if (prevServerHash && prevServerHash !== curServerHash) { |
| serverComponentChangedItems.add(key) |
| } |
| pageHashMap.set(serverKey, curServerHash) |
| } |
|
|
| if (hasCSSModuleChanges) { |
| changedCSSImportPages.add(key) |
| } |
| } |
| }) |
| } |
| }) |
| } catch (err) { |
| console.error(err) |
| } |
| } |
|
|
| this.multiCompiler.compilers[0].hooks.emit.tap( |
| 'NextjsHotReloaderForClient', |
| trackPageChanges(prevClientPageHashes, changedClientPages) |
| ) |
| this.multiCompiler.compilers[1].hooks.emit.tap( |
| 'NextjsHotReloaderForServer', |
| trackPageChanges( |
| prevServerPageHashes, |
| changedServerPages, |
| changedServerComponentPages |
| ) |
| ) |
| this.multiCompiler.compilers[2].hooks.emit.tap( |
| 'NextjsHotReloaderForServer', |
| trackPageChanges( |
| prevEdgeServerPageHashes, |
| changedEdgeServerPages, |
| changedServerComponentPages |
| ) |
| ) |
|
|
| |
| this.multiCompiler.compilers[1].hooks.failed.tap( |
| 'NextjsHotReloaderForServer', |
| (err: Error) => { |
| this.serverError = err |
| this.serverStats = null |
| this.serverChunkNames = undefined |
| } |
| ) |
|
|
| this.multiCompiler.compilers[2].hooks.done.tap( |
| 'NextjsHotReloaderForServer', |
| (stats) => { |
| this.serverError = null |
| this.edgeServerStats = stats |
| } |
| ) |
|
|
| this.multiCompiler.compilers[1].hooks.done.tap( |
| 'NextjsHotReloaderForServer', |
| (stats) => { |
| this.serverError = null |
| this.serverStats = stats |
|
|
| if (!this.pagesDir) { |
| return |
| } |
|
|
| const { compilation } = stats |
|
|
| |
| |
| const documentChunk = compilation.namedChunks.get('pages/_document') |
| |
| if (!documentChunk) { |
| return |
| } |
|
|
| |
| if (this.serverPrevDocumentHash === null) { |
| this.serverPrevDocumentHash = documentChunk.hash || null |
| return |
| } |
|
|
| |
| if (documentChunk.hash === this.serverPrevDocumentHash) { |
| return |
| } |
|
|
| |
| |
| |
| |
| if (this.appDir) { |
| const chunkNames = new Set(compilation.namedChunks.keys()) |
| const diffChunkNames = difference<string>( |
| this.serverChunkNames || new Set(), |
| chunkNames |
| ) |
|
|
| if ( |
| diffChunkNames.length === 0 || |
| diffChunkNames.every((chunkName) => chunkName.startsWith('app/')) |
| ) { |
| return |
| } |
| this.serverChunkNames = chunkNames |
| } |
|
|
| this.serverPrevDocumentHash = documentChunk.hash || null |
|
|
| |
| this.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.RELOAD_PAGE, |
| data: '_document has changed', |
| }) |
| } |
| ) |
|
|
| this.multiCompiler.hooks.done.tap('NextjsHotReloaderForServer', (stats) => { |
| const reloadAfterInvalidation = this.reloadAfterInvalidation |
| this.reloadAfterInvalidation = false |
|
|
| const serverOnlyChanges = difference<string>( |
| changedServerPages, |
| changedClientPages |
| ) |
|
|
| const edgeServerOnlyChanges = difference<string>( |
| changedEdgeServerPages, |
| changedClientPages |
| ) |
|
|
| const pageChanges = serverOnlyChanges |
| .concat(edgeServerOnlyChanges) |
| .filter((key) => key.startsWith('pages/')) |
|
|
| const middlewareChanges = [ |
| ...Array.from(changedEdgeServerPages), |
| ...Array.from(changedServerPages), |
| ].filter((name) => isMiddlewareFilename(name)) |
|
|
| if (middlewareChanges.length > 0) { |
| this.send({ |
| event: HMR_ACTIONS_SENT_TO_BROWSER.MIDDLEWARE_CHANGES, |
| }) |
| } |
|
|
| if (pageChanges.length > 0) { |
| this.send({ |
| event: HMR_ACTIONS_SENT_TO_BROWSER.SERVER_ONLY_CHANGES, |
| pages: serverOnlyChanges.map((pg) => |
| denormalizePagePath(pg.slice('pages'.length)) |
| ), |
| }) |
| } |
|
|
| if ( |
| changedServerComponentPages.size || |
| changedCSSImportPages.size || |
| reloadAfterInvalidation |
| ) { |
| this.resetFetch() |
| this.refreshServerComponents(stats.hash) |
| } |
|
|
| changedClientPages.clear() |
| changedServerPages.clear() |
| changedEdgeServerPages.clear() |
| changedServerComponentPages.clear() |
| changedCSSImportPages.clear() |
| }) |
|
|
| this.multiCompiler.compilers[0].hooks.failed.tap( |
| 'NextjsHotReloaderForClient', |
| (err: Error) => { |
| this.clientError = err |
| this.clientStats = null |
| } |
| ) |
| this.multiCompiler.compilers[0].hooks.done.tap( |
| 'NextjsHotReloaderForClient', |
| (stats) => { |
| this.clientError = null |
| this.clientStats = stats |
|
|
| const { compilation } = stats |
| const chunkNames = new Set( |
| [...compilation.namedChunks.keys()].filter( |
| (name) => !!getRouteFromEntrypoint(name) |
| ) |
| ) |
|
|
| if (this.prevChunkNames) { |
| |
| |
| const addedPages = diff(chunkNames, this.prevChunkNames!) |
| const removedPages = diff(this.prevChunkNames!, chunkNames) |
|
|
| if (addedPages.size > 0) { |
| for (const addedPage of addedPages) { |
| const page = getRouteFromEntrypoint(addedPage) |
| this.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.ADDED_PAGE, |
| data: [page], |
| }) |
| } |
| } |
|
|
| if (removedPages.size > 0) { |
| for (const removedPage of removedPages) { |
| const page = getRouteFromEntrypoint(removedPage) |
| this.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.REMOVED_PAGE, |
| data: [page], |
| }) |
| } |
| } |
| } |
|
|
| this.prevChunkNames = chunkNames |
| } |
| ) |
|
|
| this.webpackHotMiddleware = new WebpackHotMiddleware( |
| this.multiCompiler.compilers, |
| this.versionInfo, |
| this.devtoolsFrontendUrl, |
| initialDevToolsConfig |
| ) |
|
|
| let booted = false |
|
|
| this.watcher = await new Promise((resolve) => { |
| const watcher = this.multiCompiler?.watch( |
| |
| this.activeWebpackConfigs.map((config) => config.watchOptions!), |
| |
| (_err: any) => { |
| if (!booted) { |
| booted = true |
| resolve(watcher) |
| } |
| } |
| ) |
| }) |
|
|
| this.onDemandEntries = onDemandEntryHandler({ |
| hotReloader: this, |
| multiCompiler: this.multiCompiler, |
| pagesDir: this.pagesDir, |
| appDir: this.appDir, |
| rootDir: this.dir, |
| nextConfig: this.config, |
| ...(this.config.onDemandEntries as { |
| maxInactiveAge: number |
| pagesBufferLength: number |
| }), |
| }) |
|
|
| this.middlewares = [ |
| getOverlayMiddleware({ |
| rootDirectory: this.dir, |
| isSrcDir: this.isSrcDir, |
| clientStats: () => this.clientStats, |
| serverStats: () => this.serverStats, |
| edgeServerStats: () => this.edgeServerStats, |
| }), |
| getSourceMapMiddleware({ |
| clientStats: () => this.clientStats, |
| serverStats: () => this.serverStats, |
| edgeServerStats: () => this.edgeServerStats, |
| }), |
| getNextErrorFeedbackMiddleware(this.telemetry), |
| getDevOverlayFontMiddleware(), |
| getDisableDevIndicatorMiddleware(), |
| getRestartDevServerMiddleware({ |
| telemetry: this.telemetry, |
| webpackCacheDirectories: |
| this.activeWebpackConfigs != null |
| ? getCacheDirectories(this.activeWebpackConfigs) |
| : undefined, |
| }), |
| devToolsConfigMiddleware({ |
| distDir: this.distDir, |
| sendUpdateSignal: (data) => { |
| |
| |
| this.webpackHotMiddleware?.updateDevToolsConfig(data) |
|
|
| this.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.DEVTOOLS_CONFIG, |
| data, |
| }) |
| }, |
| }), |
| ] |
| } |
|
|
| public invalidate( |
| { reloadAfterInvalidation }: { reloadAfterInvalidation: boolean } = { |
| reloadAfterInvalidation: false, |
| } |
| ) { |
| |
| this.reloadAfterInvalidation = reloadAfterInvalidation |
| const outputPath = this.multiCompiler?.outputPath |
| if (outputPath) { |
| getInvalidator(outputPath)?.invalidate() |
| } |
| } |
|
|
| public async getCompilationErrors(page: string) { |
| const getErrors = ({ compilation }: webpack.Stats) => { |
| const failedPages = erroredPages(compilation) |
| const normalizedPage = normalizePathSep(page) |
| |
| return failedPages[normalizedPage]?.length > 0 |
| ? failedPages[normalizedPage] |
| : compilation.errors |
| } |
|
|
| if (this.clientError) { |
| return [this.clientError] |
| } else if (this.serverError) { |
| return [this.serverError] |
| } else if (this.clientStats?.hasErrors()) { |
| return getErrors(this.clientStats) |
| } else if (this.serverStats?.hasErrors()) { |
| return getErrors(this.serverStats) |
| } else if (this.edgeServerStats?.hasErrors()) { |
| return getErrors(this.edgeServerStats) |
| } else { |
| return [] |
| } |
| } |
|
|
| public send(action: HMR_ACTION_TYPES): void { |
| this.webpackHotMiddleware!.publish(action) |
| } |
|
|
| public async ensurePage({ |
| page, |
| clientOnly, |
| appPaths, |
| definition, |
| isApp, |
| url, |
| }: { |
| page: string |
| clientOnly: boolean |
| appPaths?: ReadonlyArray<string> | null |
| isApp?: boolean |
| definition?: RouteDefinition |
| url?: string |
| }): Promise<void> { |
| return this.hotReloaderSpan |
| .traceChild('ensure-page', { |
| inputPage: page, |
| }) |
| .traceAsyncFn(async () => { |
| |
| if (page !== '/_error' && BLOCKED_PAGES.indexOf(page) !== -1) { |
| return |
| } |
| const error = clientOnly |
| ? this.clientError |
| : this.serverError || this.clientError |
| if (error) { |
| throw error |
| } |
|
|
| return this.onDemandEntries?.ensurePage({ |
| page, |
| appPaths, |
| definition, |
| isApp, |
| url, |
| }) |
| }) |
| } |
|
|
| public close() { |
| this.webpackHotMiddleware?.close() |
| } |
| } |
|
|