| import type { NextConfigComplete } from '../../config-shared' |
| import type { FilesystemDynamicRoute } from './filesystem' |
| import type { UnwrapPromise } from '../../../lib/coalesced-function' |
| import { |
| getPageStaticInfo, |
| type MiddlewareMatcher, |
| } from '../../../build/analysis/get-page-static-info' |
| import type { RoutesManifest } from '../../../build' |
| import type { MiddlewareRouteMatch } from '../../../shared/lib/router/utils/middleware-route-matcher' |
| import type { PropagateToWorkersField } from './types' |
| import type { NextJsHotReloaderInterface } from '../../dev/hot-reloader-types' |
|
|
| import { createDefineEnv } from '../../../build/swc' |
| import fs from 'fs' |
| import { mkdir } from 'fs/promises' |
| import url from 'url' |
| import path from 'path' |
| import qs from 'querystring' |
| import Watchpack from 'next/dist/compiled/watchpack' |
| import { loadEnvConfig } from '@next/env' |
| import findUp from 'next/dist/compiled/find-up' |
| import { buildCustomRoute } from './filesystem' |
| import * as Log from '../../../build/output/log' |
| import HotReloaderWebpack from '../../dev/hot-reloader-webpack' |
| import { setGlobal } from '../../../trace/shared' |
| import type { Telemetry } from '../../../telemetry/storage' |
| import type { IncomingMessage, ServerResponse } from 'http' |
| import loadJsConfig from '../../../build/load-jsconfig' |
| import { createValidFileMatcher } from '../find-page-file' |
| import { |
| EVENT_BUILD_FEATURE_USAGE, |
| eventCliSession, |
| } from '../../../telemetry/events' |
| import { getSortedRoutes } from '../../../shared/lib/router/utils' |
| import { |
| getStaticInfoIncludingLayouts, |
| sortByPageExts, |
| } from '../../../build/entries' |
| import { verifyTypeScriptSetup } from '../../../lib/verify-typescript-setup' |
| import { verifyPartytownSetup } from '../../../lib/verify-partytown-setup' |
| import { getRouteRegex } from '../../../shared/lib/router/utils/route-regex' |
| import { normalizeAppPath } from '../../../shared/lib/router/utils/app-paths' |
| import { buildDataRoute } from './build-data-route' |
| import { getRouteMatcher } from '../../../shared/lib/router/utils/route-matcher' |
| import { normalizePathSep } from '../../../shared/lib/page-path/normalize-path-sep' |
| import { createClientRouterFilter } from '../../../lib/create-client-router-filter' |
| import { absolutePathToPage } from '../../../shared/lib/page-path/absolute-path-to-page' |
| import { generateInterceptionRoutesRewrites } from '../../../lib/generate-interception-routes-rewrites' |
|
|
| import { |
| CLIENT_STATIC_FILES_PATH, |
| DEV_CLIENT_PAGES_MANIFEST, |
| DEV_CLIENT_MIDDLEWARE_MANIFEST, |
| PHASE_DEVELOPMENT_SERVER, |
| TURBOPACK_CLIENT_MIDDLEWARE_MANIFEST, |
| ROUTES_MANIFEST, |
| PRERENDER_MANIFEST, |
| } from '../../../shared/lib/constants' |
|
|
| import { getMiddlewareRouteMatcher } from '../../../shared/lib/router/utils/middleware-route-matcher' |
|
|
| import { |
| isMiddlewareFile, |
| NestedMiddlewareError, |
| isInstrumentationHookFile, |
| getPossibleMiddlewareFilenames, |
| getPossibleInstrumentationHookFilenames, |
| } from '../../../build/utils' |
| import { devPageFiles } from '../../../build/webpack/plugins/next-types-plugin/shared' |
| import type { LazyRenderServerInstance } from '../router-server' |
| import { HMR_ACTIONS_SENT_TO_BROWSER } from '../../dev/hot-reloader-types' |
| import { PAGE_TYPES } from '../../../lib/page-types' |
| import { createHotReloaderTurbopack } from '../../dev/hot-reloader-turbopack' |
| import { generateEncryptionKeyBase64 } from '../../app-render/encryption-utils-server' |
| import { isMetadataRouteFile } from '../../../lib/metadata/is-metadata-route' |
| import { normalizeMetadataPageToRoute } from '../../../lib/metadata/get-metadata-route' |
| import { createEnvDefinitions } from '../experimental/create-env-definitions' |
| import { JsConfigPathsPlugin } from '../../../build/webpack/plugins/jsconfig-paths-plugin' |
| import { store as consoleStore } from '../../../build/output/store' |
| import { |
| isPersistentCachingEnabled, |
| ModuleBuildError, |
| } from '../../../shared/lib/turbopack/utils' |
| import { getDefineEnv } from '../../../build/define-env' |
| import { TurbopackInternalError } from '../../../shared/lib/turbopack/internal-error' |
| import { normalizePath } from '../../../lib/normalize-path' |
| import { JSON_CONTENT_TYPE_HEADER } from '../../../lib/constants' |
| import { parseBody } from '../../api-utils/node/parse-body' |
| import { timingSafeEqual } from 'crypto' |
|
|
| export type SetupOpts = { |
| renderServer: LazyRenderServerInstance |
| dir: string |
| turbo?: boolean |
| appDir?: string |
| pagesDir?: string |
| telemetry: Telemetry |
| isCustomServer?: boolean |
| fsChecker: UnwrapPromise< |
| ReturnType<typeof import('./filesystem').setupFsCheck> |
| > |
| nextConfig: NextConfigComplete |
| port: number |
| onDevServerCleanup: ((listener: () => Promise<void>) => void) | undefined |
| resetFetch: () => void |
| } |
|
|
| export interface DevRoutesManifest { |
| version: number |
| caseSensitive: RoutesManifest['caseSensitive'] |
| basePath: RoutesManifest['basePath'] |
| rewrites: RoutesManifest['rewrites'] |
| redirects: RoutesManifest['redirects'] |
| headers: RoutesManifest['headers'] |
| i18n: RoutesManifest['i18n'] |
| skipMiddlewareUrlNormalize: RoutesManifest['skipMiddlewareUrlNormalize'] |
| } |
|
|
| export type ServerFields = { |
| actualMiddlewareFile?: string | undefined |
| actualInstrumentationHookFile?: string | undefined |
| appPathRoutes?: Record<string, string | string[]> |
| middleware?: |
| | { |
| page: string |
| match: MiddlewareRouteMatch |
| matchers?: MiddlewareMatcher[] |
| } |
| | undefined |
| hasAppNotFound?: boolean |
| interceptionRoutes?: ReturnType< |
| typeof import('./filesystem').buildCustomRoute |
| >[] |
| setIsrStatus?: (key: string, value: boolean) => void |
| resetFetch?: () => void |
| } |
|
|
| async function verifyTypeScript(opts: SetupOpts) { |
| let usingTypeScript = false |
| const verifyResult = await verifyTypeScriptSetup({ |
| dir: opts.dir, |
| distDir: opts.nextConfig.distDir, |
| intentDirs: [opts.pagesDir, opts.appDir].filter(Boolean) as string[], |
| typeCheckPreflight: false, |
| tsconfigPath: opts.nextConfig.typescript.tsconfigPath, |
| disableStaticImages: opts.nextConfig.images.disableStaticImages, |
| hasAppDir: !!opts.appDir, |
| hasPagesDir: !!opts.pagesDir, |
| }) |
|
|
| if (verifyResult.version) { |
| usingTypeScript = true |
| } |
| return usingTypeScript |
| } |
|
|
| export async function propagateServerField( |
| opts: SetupOpts, |
| field: PropagateToWorkersField, |
| args: any |
| ) { |
| await opts.renderServer?.instance?.propagateServerField(opts.dir, field, args) |
| } |
|
|
| async function startWatcher( |
| opts: SetupOpts & { |
| isSrcDir: boolean |
| } |
| ) { |
| const { nextConfig, appDir, pagesDir, dir, resetFetch } = opts |
| const { useFileSystemPublicRoutes } = nextConfig |
| const usingTypeScript = await verifyTypeScript(opts) |
|
|
| const distDir = path.join(opts.dir, opts.nextConfig.distDir) |
|
|
| |
| if (usingTypeScript) { |
| const distTypesDir = path.join(distDir, 'types') |
| if (!fs.existsSync(distTypesDir)) { |
| await mkdir(distTypesDir, { recursive: true }) |
| } |
| } |
|
|
| setGlobal('distDir', distDir) |
| setGlobal('phase', PHASE_DEVELOPMENT_SERVER) |
|
|
| const validFileMatcher = createValidFileMatcher( |
| nextConfig.pageExtensions, |
| appDir |
| ) |
|
|
| const serverFields: ServerFields = {} |
|
|
| |
| consoleStore.setState({ |
| logging: nextConfig.logging !== false, |
| }) |
|
|
| const hotReloader: NextJsHotReloaderInterface = opts.turbo |
| ? await createHotReloaderTurbopack(opts, serverFields, distDir, resetFetch) |
| : new HotReloaderWebpack(opts.dir, { |
| isSrcDir: opts.isSrcDir, |
| appDir, |
| pagesDir, |
| distDir, |
| config: opts.nextConfig, |
| buildId: 'development', |
| encryptionKey: await generateEncryptionKeyBase64({ |
| isBuild: false, |
| distDir, |
| }), |
| telemetry: opts.telemetry, |
| rewrites: opts.fsChecker.rewrites, |
| previewProps: opts.fsChecker.prerenderManifest.preview, |
| resetFetch, |
| }) |
|
|
| await hotReloader.start() |
|
|
| |
| |
| const routesManifestPath = path.join(distDir, ROUTES_MANIFEST) |
| const routesManifest: DevRoutesManifest = { |
| version: 3, |
| caseSensitive: !!nextConfig.experimental.caseSensitiveRoutes, |
| basePath: nextConfig.basePath, |
| rewrites: opts.fsChecker.rewrites, |
| redirects: opts.fsChecker.redirects, |
| headers: opts.fsChecker.headers, |
| i18n: nextConfig.i18n || undefined, |
| skipMiddlewareUrlNormalize: nextConfig.skipMiddlewareUrlNormalize, |
| } |
| await fs.promises.writeFile( |
| routesManifestPath, |
| JSON.stringify(routesManifest) |
| ) |
|
|
| const prerenderManifestPath = path.join(distDir, PRERENDER_MANIFEST) |
| await fs.promises.writeFile( |
| prerenderManifestPath, |
| JSON.stringify(opts.fsChecker.prerenderManifest, null, 2) |
| ) |
|
|
| if (opts.nextConfig.experimental.nextScriptWorkers) { |
| await verifyPartytownSetup( |
| opts.dir, |
| path.join(distDir, CLIENT_STATIC_FILES_PATH) |
| ) |
| } |
|
|
| opts.fsChecker.ensureCallback(async function ensure(item) { |
| if (item.type === 'appFile' || item.type === 'pageFile') { |
| await hotReloader.ensurePage({ |
| clientOnly: false, |
| page: item.itemPath, |
| isApp: item.type === 'appFile', |
| definition: undefined, |
| }) |
| } |
| }) |
|
|
| let resolved = false |
| let prevSortedRoutes: string[] = [] |
|
|
| await new Promise<void>(async (resolve, reject) => { |
| if (pagesDir) { |
| |
| fs.readdir(pagesDir, (_, files) => { |
| if (files?.length) { |
| return |
| } |
|
|
| if (!resolved) { |
| resolve() |
| resolved = true |
| } |
| }) |
| } |
|
|
| const pages = pagesDir ? [pagesDir] : [] |
| const app = appDir ? [appDir] : [] |
| const directories = [...pages, ...app] |
|
|
| const rootDir = pagesDir || appDir |
| const files = [ |
| ...getPossibleMiddlewareFilenames( |
| path.join(rootDir!, '..'), |
| nextConfig.pageExtensions |
| ), |
| ...getPossibleInstrumentationHookFilenames( |
| path.join(rootDir!, '..'), |
| nextConfig.pageExtensions |
| ), |
| ] |
| let nestedMiddleware: string[] = [] |
|
|
| const envFiles = [ |
| '.env.development.local', |
| '.env.local', |
| '.env.development', |
| '.env', |
| ].map((file) => path.join(dir, file)) |
|
|
| files.push(...envFiles) |
|
|
| |
| const tsconfigPaths = [ |
| path.join(dir, 'tsconfig.json'), |
| path.join(dir, 'jsconfig.json'), |
| ] as const |
| files.push(...tsconfigPaths) |
|
|
| const wp = new Watchpack({ |
| ignored: (pathname: string) => { |
| return ( |
| !files.some((file) => file.startsWith(pathname)) && |
| !directories.some( |
| (d) => pathname.startsWith(d) || d.startsWith(pathname) |
| ) |
| ) |
| }, |
| }) |
| const fileWatchTimes = new Map() |
| let enabledTypeScript = usingTypeScript |
| let previousClientRouterFilters: any |
| let previousConflictingPagePaths: Set<string> = new Set() |
|
|
| wp.on('aggregated', async () => { |
| let middlewareMatchers: MiddlewareMatcher[] | undefined |
| const routedPages: string[] = [] |
| const knownFiles = wp.getTimeInfoEntries() |
| const appPaths: Record<string, string[]> = {} |
| const pageNameSet = new Set<string>() |
| const conflictingAppPagePaths = new Set<string>() |
| const appPageFilePaths = new Map<string, string>() |
| const pagesPageFilePaths = new Map<string, string>() |
|
|
| let envChange = false |
| let tsconfigChange = false |
| let conflictingPageChange = 0 |
| let hasRootAppNotFound = false |
|
|
| const { appFiles, pageFiles } = opts.fsChecker |
|
|
| appFiles.clear() |
| pageFiles.clear() |
| devPageFiles.clear() |
|
|
| const sortedKnownFiles: string[] = [...knownFiles.keys()].sort( |
| sortByPageExts(nextConfig.pageExtensions) |
| ) |
|
|
| for (const fileName of sortedKnownFiles) { |
| if ( |
| !files.includes(fileName) && |
| !directories.some((d) => fileName.startsWith(d)) |
| ) { |
| continue |
| } |
| const meta = knownFiles.get(fileName) |
|
|
| const watchTime = fileWatchTimes.get(fileName) |
| |
| const watchTimeChange = |
| watchTime === undefined || |
| (watchTime && watchTime !== meta?.timestamp) |
| fileWatchTimes.set(fileName, meta?.timestamp) |
|
|
| if (envFiles.includes(fileName)) { |
| if (watchTimeChange) { |
| envChange = true |
| } |
| continue |
| } |
|
|
| if (tsconfigPaths.includes(fileName)) { |
| if (fileName.endsWith('tsconfig.json')) { |
| enabledTypeScript = true |
| } |
| if (watchTimeChange) { |
| tsconfigChange = true |
| } |
| continue |
| } |
|
|
| if ( |
| meta?.accuracy === undefined || |
| !validFileMatcher.isPageFile(fileName) |
| ) { |
| continue |
| } |
|
|
| const isAppPath = Boolean( |
| appDir && |
| normalizePathSep(fileName).startsWith( |
| normalizePathSep(appDir) + '/' |
| ) |
| ) |
| const isPagePath = Boolean( |
| pagesDir && |
| normalizePathSep(fileName).startsWith( |
| normalizePathSep(pagesDir) + '/' |
| ) |
| ) |
|
|
| const rootFile = absolutePathToPage(fileName, { |
| dir: dir, |
| extensions: nextConfig.pageExtensions, |
| keepIndex: false, |
| pagesType: PAGE_TYPES.ROOT, |
| }) |
|
|
| if (isMiddlewareFile(rootFile)) { |
| const staticInfo = await getStaticInfoIncludingLayouts({ |
| pageFilePath: fileName, |
| config: nextConfig, |
| appDir: appDir, |
| page: rootFile, |
| isDev: true, |
| isInsideAppDir: isAppPath, |
| pageExtensions: nextConfig.pageExtensions, |
| }) |
| if (nextConfig.output === 'export') { |
| Log.error( |
| 'Middleware cannot be used with "output: export". See more info here: https://nextjs.org/docs/advanced-features/static-html-export' |
| ) |
| continue |
| } |
| serverFields.actualMiddlewareFile = rootFile |
| await propagateServerField( |
| opts, |
| 'actualMiddlewareFile', |
| serverFields.actualMiddlewareFile |
| ) |
| middlewareMatchers = staticInfo.middleware?.matchers || [ |
| { regexp: '.*', originalSource: '/:path*' }, |
| ] |
| continue |
| } |
| if (isInstrumentationHookFile(rootFile)) { |
| serverFields.actualInstrumentationHookFile = rootFile |
| await propagateServerField( |
| opts, |
| 'actualInstrumentationHookFile', |
| serverFields.actualInstrumentationHookFile |
| ) |
| continue |
| } |
|
|
| if (fileName.endsWith('.ts') || fileName.endsWith('.tsx')) { |
| enabledTypeScript = true |
| } |
|
|
| if (!(isAppPath || isPagePath)) { |
| continue |
| } |
|
|
| |
| devPageFiles.add(fileName) |
|
|
| let pageName = absolutePathToPage(fileName, { |
| dir: isAppPath ? appDir! : pagesDir!, |
| extensions: nextConfig.pageExtensions, |
| keepIndex: isAppPath, |
| pagesType: isAppPath ? PAGE_TYPES.APP : PAGE_TYPES.PAGES, |
| }) |
|
|
| if ( |
| isAppPath && |
| appDir && |
| isMetadataRouteFile( |
| fileName.replace(appDir, ''), |
| nextConfig.pageExtensions, |
| true |
| ) |
| ) { |
| const staticInfo = await getPageStaticInfo({ |
| pageFilePath: fileName, |
| nextConfig: {}, |
| page: pageName, |
| isDev: true, |
| pageType: PAGE_TYPES.APP, |
| }) |
|
|
| pageName = normalizeMetadataPageToRoute( |
| pageName, |
| !!(staticInfo.generateSitemaps || staticInfo.generateImageMetadata) |
| ) |
| } |
|
|
| if ( |
| !isAppPath && |
| pageName.startsWith('/api/') && |
| nextConfig.output === 'export' |
| ) { |
| Log.error( |
| 'API Routes cannot be used with "output: export". See more info here: https://nextjs.org/docs/advanced-features/static-html-export' |
| ) |
| continue |
| } |
|
|
| if (isAppPath) { |
| const isRootNotFound = validFileMatcher.isRootNotFound(fileName) |
| hasRootAppNotFound = true |
|
|
| if (isRootNotFound) { |
| continue |
| } |
| if (!isRootNotFound && !validFileMatcher.isAppRouterPage(fileName)) { |
| continue |
| } |
| |
| if (normalizePathSep(pageName).includes('/_')) { |
| continue |
| } |
|
|
| const originalPageName = pageName |
| pageName = normalizeAppPath(pageName).replace(/%5F/g, '_') |
| if (!appPaths[pageName]) { |
| appPaths[pageName] = [] |
| } |
| appPaths[pageName].push( |
| opts.turbo |
| ? |
| originalPageName.replace(/%5F/g, '_') |
| : originalPageName |
| ) |
|
|
| if (useFileSystemPublicRoutes) { |
| appFiles.add(pageName) |
| } |
|
|
| if (routedPages.includes(pageName)) { |
| continue |
| } |
| } else { |
| if (useFileSystemPublicRoutes) { |
| pageFiles.add(pageName) |
| |
| |
| opts.fsChecker.nextDataRoutes.add(pageName) |
| } |
| } |
| ;(isAppPath ? appPageFilePaths : pagesPageFilePaths).set( |
| pageName, |
| fileName |
| ) |
|
|
| if (appDir && pageNameSet.has(pageName)) { |
| conflictingAppPagePaths.add(pageName) |
| } else { |
| pageNameSet.add(pageName) |
| } |
|
|
| |
| |
| |
| |
| if (/[\\\\/]_middleware$/.test(pageName)) { |
| nestedMiddleware.push(pageName) |
| continue |
| } |
|
|
| routedPages.push(pageName) |
| } |
|
|
| const numConflicting = conflictingAppPagePaths.size |
| conflictingPageChange = numConflicting - previousConflictingPagePaths.size |
|
|
| if (conflictingPageChange !== 0) { |
| if (numConflicting > 0) { |
| let errorMessage = `Conflicting app and page file${ |
| numConflicting === 1 ? ' was' : 's were' |
| } found, please remove the conflicting files to continue:\n` |
|
|
| for (const p of conflictingAppPagePaths) { |
| const appPath = path.relative(dir, appPageFilePaths.get(p)!) |
| const pagesPath = path.relative(dir, pagesPageFilePaths.get(p)!) |
| errorMessage += ` "${pagesPath}" - "${appPath}"\n` |
| } |
| hotReloader.setHmrServerError(new Error(errorMessage)) |
| } else if (numConflicting === 0) { |
| hotReloader.clearHmrServerError() |
| await propagateServerField(opts, 'reloadMatchers', undefined) |
| } |
| } |
|
|
| previousConflictingPagePaths = conflictingAppPagePaths |
|
|
| let clientRouterFilters: any |
| if (nextConfig.experimental.clientRouterFilter) { |
| clientRouterFilters = createClientRouterFilter( |
| Object.keys(appPaths), |
| nextConfig.experimental.clientRouterFilterRedirects |
| ? ((nextConfig as any)._originalRedirects || []).filter( |
| (r: any) => !r.internal |
| ) |
| : [], |
| nextConfig.experimental.clientRouterFilterAllowedRate |
| ) |
|
|
| if ( |
| !previousClientRouterFilters || |
| JSON.stringify(previousClientRouterFilters) !== |
| JSON.stringify(clientRouterFilters) |
| ) { |
| envChange = true |
| previousClientRouterFilters = clientRouterFilters |
| } |
| } |
|
|
| if (!usingTypeScript && enabledTypeScript) { |
| |
| |
| await verifyTypeScript(opts) |
| .then(() => { |
| tsconfigChange = true |
| }) |
| .catch(() => {}) |
| } |
|
|
| if (envChange || tsconfigChange) { |
| if (envChange) { |
| const { loadedEnvFiles } = loadEnvConfig( |
| dir, |
| process.env.NODE_ENV === 'development', |
| Log, |
| true, |
| (envFilePath) => { |
| Log.info(`Reload env: ${envFilePath}`) |
| } |
| ) |
|
|
| if (usingTypeScript && nextConfig.experimental?.typedEnv) { |
| |
| createEnvDefinitions({ |
| distDir, |
| loadedEnvFiles: [ |
| ...loadedEnvFiles, |
| { |
| path: nextConfig.configFileName, |
| env: nextConfig.env, |
| contents: '', |
| }, |
| ], |
| }) |
| } |
|
|
| await propagateServerField(opts, 'loadEnvConfig', [ |
| { dev: true, forceReload: true, silent: true }, |
| ]) |
| } |
| let tsconfigResult: |
| | UnwrapPromise<ReturnType<typeof loadJsConfig>> |
| | undefined |
|
|
| if (tsconfigChange) { |
| try { |
| tsconfigResult = await loadJsConfig(dir, nextConfig) |
| } catch (_) { |
| |
| } |
| } |
|
|
| if (hotReloader.turbopackProject) { |
| const hasRewrites = |
| opts.fsChecker.rewrites.afterFiles.length > 0 || |
| opts.fsChecker.rewrites.beforeFiles.length > 0 || |
| opts.fsChecker.rewrites.fallback.length > 0 |
|
|
| const rootPath = |
| opts.nextConfig.turbopack?.root || |
| opts.nextConfig.outputFileTracingRoot || |
| opts.dir |
| await hotReloader.turbopackProject.update({ |
| defineEnv: createDefineEnv({ |
| isTurbopack: true, |
| clientRouterFilters, |
| config: nextConfig, |
| dev: true, |
| distDir, |
| fetchCacheKeyPrefix: |
| opts.nextConfig.experimental.fetchCacheKeyPrefix, |
| hasRewrites, |
| |
| middlewareMatchers: undefined, |
| projectPath: opts.dir, |
| rewrites: opts.fsChecker.rewrites, |
| }), |
| rootPath, |
| projectPath: normalizePath(path.relative(rootPath, dir)), |
| }) |
| } |
|
|
| hotReloader.activeWebpackConfigs?.forEach((config, idx) => { |
| const isClient = idx === 0 |
| const isNodeServer = idx === 1 |
| const isEdgeServer = idx === 2 |
| const hasRewrites = |
| opts.fsChecker.rewrites.afterFiles.length > 0 || |
| opts.fsChecker.rewrites.beforeFiles.length > 0 || |
| opts.fsChecker.rewrites.fallback.length > 0 |
|
|
| if (tsconfigChange) { |
| config.resolve?.plugins?.forEach((plugin: any) => { |
| |
| |
| if (plugin instanceof JsConfigPathsPlugin && tsconfigResult) { |
| const { resolvedBaseUrl, jsConfig } = tsconfigResult |
| const currentResolvedBaseUrl = plugin.resolvedBaseUrl |
| const resolvedUrlIndex = config.resolve?.modules?.findIndex( |
| (item) => item === currentResolvedBaseUrl?.baseUrl |
| ) |
|
|
| if (resolvedBaseUrl) { |
| if ( |
| resolvedBaseUrl.baseUrl !== currentResolvedBaseUrl?.baseUrl |
| ) { |
| |
| if (resolvedUrlIndex && resolvedUrlIndex > -1) { |
| config.resolve?.modules?.splice(resolvedUrlIndex, 1) |
| } |
|
|
| |
| |
| if (!resolvedBaseUrl.isImplicit) { |
| config.resolve?.modules?.push(resolvedBaseUrl.baseUrl) |
| } |
| } |
| } |
|
|
| if (jsConfig?.compilerOptions?.paths && resolvedBaseUrl) { |
| Object.keys(plugin.paths).forEach((key) => { |
| delete plugin.paths[key] |
| }) |
| Object.assign(plugin.paths, jsConfig.compilerOptions.paths) |
| plugin.resolvedBaseUrl = resolvedBaseUrl |
| } |
| } |
| }) |
| } |
|
|
| if (envChange) { |
| config.plugins?.forEach((plugin: any) => { |
| |
| |
| if ( |
| plugin && |
| typeof plugin.definitions === 'object' && |
| plugin.definitions.__NEXT_DEFINE_ENV |
| ) { |
| const newDefine = getDefineEnv({ |
| isTurbopack: false, |
| clientRouterFilters, |
| config: nextConfig, |
| dev: true, |
| distDir, |
| fetchCacheKeyPrefix: |
| opts.nextConfig.experimental.fetchCacheKeyPrefix, |
| hasRewrites, |
| isClient, |
| isEdgeServer, |
| isNodeServer, |
| middlewareMatchers: undefined, |
| projectPath: opts.dir, |
| rewrites: opts.fsChecker.rewrites, |
| }) |
|
|
| Object.keys(plugin.definitions).forEach((key) => { |
| if (!(key in newDefine)) { |
| delete plugin.definitions[key] |
| } |
| }) |
| Object.assign(plugin.definitions, newDefine) |
| } |
| }) |
| } |
| }) |
| await hotReloader.invalidate({ |
| reloadAfterInvalidation: envChange, |
| }) |
| } |
|
|
| if (nestedMiddleware.length > 0) { |
| Log.error( |
| new NestedMiddlewareError( |
| nestedMiddleware, |
| dir, |
| (pagesDir || appDir)! |
| ).message |
| ) |
| nestedMiddleware = [] |
| } |
|
|
| |
| serverFields.appPathRoutes = Object.fromEntries( |
| Object.entries(appPaths).map(([k, v]) => [k, v.sort()]) |
| ) |
| await propagateServerField( |
| opts, |
| 'appPathRoutes', |
| serverFields.appPathRoutes |
| ) |
|
|
| |
| serverFields.middleware = middlewareMatchers |
| ? { |
| match: null as any, |
| page: '/', |
| matchers: middlewareMatchers, |
| } |
| : undefined |
|
|
| await propagateServerField(opts, 'middleware', serverFields.middleware) |
| serverFields.hasAppNotFound = hasRootAppNotFound |
|
|
| opts.fsChecker.middlewareMatcher = serverFields.middleware?.matchers |
| ? getMiddlewareRouteMatcher(serverFields.middleware?.matchers) |
| : undefined |
|
|
| const interceptionRoutes = generateInterceptionRoutesRewrites( |
| Object.keys(appPaths), |
| opts.nextConfig.basePath |
| ).map((item) => |
| buildCustomRoute( |
| 'before_files_rewrite', |
| item, |
| opts.nextConfig.basePath, |
| opts.nextConfig.experimental.caseSensitiveRoutes |
| ) |
| ) |
|
|
| opts.fsChecker.rewrites.beforeFiles.push(...interceptionRoutes) |
|
|
| const exportPathMap = |
| (typeof nextConfig.exportPathMap === 'function' && |
| (await nextConfig.exportPathMap?.( |
| {}, |
| { |
| dev: true, |
| dir: opts.dir, |
| outDir: null, |
| distDir: distDir, |
| buildId: 'development', |
| } |
| ))) || |
| {} |
|
|
| const exportPathMapEntries = Object.entries(exportPathMap || {}) |
|
|
| if (exportPathMapEntries.length > 0) { |
| opts.fsChecker.exportPathMapRoutes = exportPathMapEntries.map( |
| ([key, value]) => |
| buildCustomRoute( |
| 'before_files_rewrite', |
| { |
| source: key, |
| destination: `${value.page}${ |
| value.query ? '?' : '' |
| }${qs.stringify(value.query)}`, |
| }, |
| opts.nextConfig.basePath, |
| opts.nextConfig.experimental.caseSensitiveRoutes |
| ) |
| ) |
| } |
|
|
| try { |
| |
| |
| |
| const sortedRoutes = getSortedRoutes(routedPages) |
|
|
| opts.fsChecker.dynamicRoutes = sortedRoutes.map( |
| (page): FilesystemDynamicRoute => { |
| const regex = getRouteRegex(page) |
| return { |
| regex: regex.re.toString(), |
| match: getRouteMatcher(regex), |
| page, |
| } |
| } |
| ) |
|
|
| const dataRoutes: typeof opts.fsChecker.dynamicRoutes = [] |
|
|
| for (const page of sortedRoutes) { |
| const route = buildDataRoute(page, 'development') |
| const routeRegex = getRouteRegex(route.page) |
| dataRoutes.push({ |
| ...route, |
| regex: routeRegex.re.toString(), |
| match: getRouteMatcher({ |
| |
| |
| re: opts.nextConfig.i18n |
| ? new RegExp( |
| route.dataRouteRegex.replace( |
| `/development/`, |
| `/development/(?<nextLocale>[^/]+?)/` |
| ) |
| ) |
| : new RegExp(route.dataRouteRegex), |
| groups: routeRegex.groups, |
| }), |
| }) |
| } |
| opts.fsChecker.dynamicRoutes.unshift(...dataRoutes) |
|
|
| if (!prevSortedRoutes?.every((val, idx) => val === sortedRoutes[idx])) { |
| const addedRoutes = sortedRoutes.filter( |
| (route) => !prevSortedRoutes.includes(route) |
| ) |
| const removedRoutes = prevSortedRoutes.filter( |
| (route) => !sortedRoutes.includes(route) |
| ) |
|
|
| |
| hotReloader.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.DEV_PAGES_MANIFEST_UPDATE, |
| data: [ |
| { |
| devPagesManifest: true, |
| }, |
| ], |
| }) |
|
|
| addedRoutes.forEach((route) => { |
| hotReloader.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.ADDED_PAGE, |
| data: [route], |
| }) |
| }) |
|
|
| removedRoutes.forEach((route) => { |
| hotReloader.send({ |
| action: HMR_ACTIONS_SENT_TO_BROWSER.REMOVED_PAGE, |
| data: [route], |
| }) |
| }) |
| } |
| prevSortedRoutes = sortedRoutes |
|
|
| if (!resolved) { |
| resolve() |
| resolved = true |
| } |
| } catch (e) { |
| if (!resolved) { |
| reject(e) |
| resolved = true |
| } else { |
| Log.warn('Failed to reload dynamic routes:', e) |
| } |
| } finally { |
| |
| |
| await propagateServerField(opts, 'reloadMatchers', undefined) |
| } |
| }) |
|
|
| wp.watch({ directories: [dir], startTime: 0 }) |
| }) |
|
|
| const clientPagesManifestPath = `/_next/${CLIENT_STATIC_FILES_PATH}/development/${DEV_CLIENT_PAGES_MANIFEST}` |
| opts.fsChecker.devVirtualFsItems.add(clientPagesManifestPath) |
|
|
| const devMiddlewareManifestPath = `/_next/${CLIENT_STATIC_FILES_PATH}/development/${DEV_CLIENT_MIDDLEWARE_MANIFEST}` |
| opts.fsChecker.devVirtualFsItems.add(devMiddlewareManifestPath) |
|
|
| const devTurbopackMiddlewareManifestPath = `/_next/${CLIENT_STATIC_FILES_PATH}/development/${TURBOPACK_CLIENT_MIDDLEWARE_MANIFEST}` |
| opts.fsChecker.devVirtualFsItems.add(devTurbopackMiddlewareManifestPath) |
|
|
| const mcpPath = `/_next/mcp` |
| opts.fsChecker.devVirtualFsItems.add(mcpPath) |
|
|
| let mcpSecret = process.env.NEXT_EXPERIMENTAL_MCP_SECRET |
| ? Buffer.from(process.env.NEXT_EXPERIMENTAL_MCP_SECRET) |
| : undefined |
|
|
| if (mcpSecret) { |
| try { |
| |
| require('@modelcontextprotocol/sdk/package.json') |
| } catch (error) { |
| Log.error( |
| 'To use the MCP server, please install the `@modelcontextprotocol/sdk` package.' |
| ) |
| mcpSecret = undefined |
| } |
| } |
| let createMcpServer: typeof import('./mcp').createMcpServer | undefined |
| let StreamableHTTPServerTransport: |
| | typeof import('./mcp').StreamableHTTPServerTransport |
| | undefined |
| if (mcpSecret) { |
| ;({ createMcpServer, StreamableHTTPServerTransport } = |
| require('./mcp') as typeof import('./mcp')) |
| Log.info( |
| `Experimental MCP server is available at: /_next/mcp?${mcpSecret.toString()}` |
| ) |
| } |
|
|
| async function requestHandler(req: IncomingMessage, res: ServerResponse) { |
| const parsedUrl = url.parse(req.url || '/') |
|
|
| if (parsedUrl.pathname?.includes(mcpPath)) { |
| function sendMcpInternalError(message: string) { |
| res.statusCode = 500 |
| res.setHeader('Content-Type', 'application/json; charset=utf-8') |
| res.end( |
| JSON.stringify({ |
| jsonrpc: '2.0', |
| error: { |
| |
| code: -32603, |
| message, |
| }, |
| id: null, |
| }) |
| ) |
| return { finished: true } |
| } |
| if (!mcpSecret) { |
| Log.error('Next.js MCP server is not enabled') |
| Log.info( |
| 'To enable it, set the NEXT_EXPERIMENTAL_MCP_SECRET environment variable to a secret value. This will make the MCP server available at /_next/mcp?{NEXT_EXPERIMENTAL_MCP_SECRET}' |
| ) |
| return sendMcpInternalError( |
| 'Missing NEXT_EXPERIMENTAL_MCP_SECRET environment variable' |
| ) |
| } |
| if (!createMcpServer || !StreamableHTTPServerTransport) { |
| return sendMcpInternalError( |
| 'Model Context Protocol (MCP) server is not available' |
| ) |
| } |
| if (!parsedUrl.query) { |
| Log.error('No MCP secret provided in request query') |
| Log.info( |
| `Experimental MCP server is available at: /_next/mcp?${mcpSecret.toString()}` |
| ) |
| return sendMcpInternalError('No MCP secret provided in request query') |
| } |
| let mcpSecretQuery = Buffer.from(parsedUrl.query) |
| if ( |
| mcpSecretQuery.length !== mcpSecret.length || |
| !timingSafeEqual(mcpSecretQuery, mcpSecret) |
| ) { |
| Log.error('Invalid MCP secret provided in request query') |
| Log.info( |
| `Experimental MCP server is available at: /_next/mcp?${mcpSecret.toString()}` |
| ) |
| return sendMcpInternalError( |
| 'Invalid MCP secret provided in request query' |
| ) |
| } |
|
|
| const server = createMcpServer(hotReloader) |
| if (server) { |
| try { |
| const transport = new StreamableHTTPServerTransport({ |
| sessionIdGenerator: undefined, |
| }) |
| res.on('close', () => { |
| transport.close() |
| server.close() |
| }) |
| await server.connect(transport) |
| const parsedBody = await parseBody(req, 1024 * 1024 * 1024) |
| await transport.handleRequest(req, res, parsedBody) |
| } catch (error) { |
| Log.error('Error handling MCP request:', error) |
| if (!res.headersSent) { |
| return sendMcpInternalError('Internal server error') |
| } |
| } |
| return { finished: true } |
| } |
| } |
|
|
| if (parsedUrl.pathname?.includes(clientPagesManifestPath)) { |
| res.statusCode = 200 |
| res.setHeader('Content-Type', JSON_CONTENT_TYPE_HEADER) |
| res.end( |
| JSON.stringify({ |
| pages: prevSortedRoutes.filter( |
| (route) => !opts.fsChecker.appFiles.has(route) |
| ), |
| }) |
| ) |
| return { finished: true } |
| } |
|
|
| if ( |
| parsedUrl.pathname?.includes(devMiddlewareManifestPath) || |
| parsedUrl.pathname?.includes(devTurbopackMiddlewareManifestPath) |
| ) { |
| res.statusCode = 200 |
| res.setHeader('Content-Type', JSON_CONTENT_TYPE_HEADER) |
| res.end(JSON.stringify(serverFields.middleware?.matchers || [])) |
| return { finished: true } |
| } |
| return { finished: false } |
| } |
|
|
| function logErrorWithOriginalStack( |
| err: unknown, |
| type?: 'unhandledRejection' | 'uncaughtException' | 'warning' | 'app-dir' |
| ) { |
| if (err instanceof ModuleBuildError) { |
| |
| Log.error(err.message) |
| } else if (err instanceof TurbopackInternalError) { |
| |
| |
| } else if (type === 'warning') { |
| Log.warn(err) |
| } else if (type === 'app-dir') { |
| Log.error(err) |
| } else if (type) { |
| Log.error(`${type}:`, err) |
| } else { |
| Log.error(err) |
| } |
| } |
|
|
| return { |
| serverFields, |
| hotReloader, |
| requestHandler, |
| logErrorWithOriginalStack, |
|
|
| async ensureMiddleware(requestUrl?: string) { |
| if (!serverFields.actualMiddlewareFile) return |
| return hotReloader.ensurePage({ |
| page: serverFields.actualMiddlewareFile, |
| clientOnly: false, |
| definition: undefined, |
| url: requestUrl, |
| }) |
| }, |
| } |
| } |
|
|
| export async function setupDevBundler(opts: SetupOpts) { |
| const isSrcDir = path |
| .relative(opts.dir, opts.pagesDir || opts.appDir || '') |
| .startsWith('src') |
|
|
| const result = await startWatcher({ |
| ...opts, |
| isSrcDir, |
| }) |
|
|
| opts.telemetry.record( |
| eventCliSession( |
| path.join(opts.dir, opts.nextConfig.distDir), |
| opts.nextConfig, |
| { |
| webpackVersion: 5, |
| isSrcDir, |
| turboFlag: !!opts.turbo, |
| cliCommand: 'dev', |
| appDir: !!opts.appDir, |
| pagesDir: !!opts.pagesDir, |
| isCustomServer: !!opts.isCustomServer, |
| hasNowJson: !!(await findUp('now.json', { cwd: opts.dir })), |
| } |
| ) |
| ) |
|
|
| |
| opts.telemetry.record({ |
| eventName: EVENT_BUILD_FEATURE_USAGE, |
| payload: { |
| featureName: 'turbopackPersistentCaching', |
| invocationCount: isPersistentCachingEnabled(opts.nextConfig) ? 1 : 0, |
| }, |
| }) |
|
|
| return result |
| } |
|
|
| export type DevBundler = Awaited<ReturnType<typeof setupDevBundler>> |
|
|
| |
|
|