next 15.6.0-canary.35 → 15.6.0-canary.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/next +1 -1
- package/dist/build/index.js +3 -3
- package/dist/build/swc/index.js +1 -1
- package/dist/build/webpack-config.js +2 -2
- package/dist/client/app-bootstrap.js +1 -1
- package/dist/client/index.js +1 -1
- package/dist/compiled/next-server/pages-api-turbo.runtime.prod.js +1 -1
- package/dist/compiled/next-server/pages-api-turbo.runtime.prod.js.map +1 -1
- package/dist/compiled/next-server/pages-api.runtime.dev.js +1 -1
- package/dist/compiled/next-server/pages-api.runtime.dev.js.map +1 -1
- package/dist/compiled/next-server/pages-turbo.runtime.prod.js +1 -1
- package/dist/compiled/next-server/pages-turbo.runtime.prod.js.map +1 -1
- package/dist/compiled/next-server/pages.runtime.dev.js +1 -1
- package/dist/compiled/next-server/pages.runtime.dev.js.map +1 -1
- package/dist/esm/build/index.js +3 -3
- package/dist/esm/build/swc/index.js +1 -1
- package/dist/esm/build/webpack-config.js +2 -2
- package/dist/esm/client/app-bootstrap.js +1 -1
- package/dist/esm/client/index.js +1 -1
- package/dist/esm/server/config-schema.js +2 -1
- package/dist/esm/server/config-schema.js.map +1 -1
- package/dist/esm/server/config-shared.js.map +1 -1
- package/dist/esm/server/config.js +2 -10
- package/dist/esm/server/config.js.map +1 -1
- package/dist/esm/server/dev/hot-reloader-turbopack.js +1 -1
- package/dist/esm/server/dev/hot-reloader-webpack.js +1 -1
- package/dist/esm/server/lib/app-info-log.js +1 -1
- package/dist/esm/server/lib/start-server.js +1 -1
- package/dist/esm/shared/lib/canary-only.js +1 -1
- package/dist/server/config-schema.js +2 -1
- package/dist/server/config-schema.js.map +1 -1
- package/dist/server/config-shared.d.ts +7 -0
- package/dist/server/config-shared.js.map +1 -1
- package/dist/server/config.js +2 -10
- package/dist/server/config.js.map +1 -1
- package/dist/server/dev/hot-reloader-turbopack.js +1 -1
- package/dist/server/dev/hot-reloader-webpack.js +1 -1
- package/dist/server/lib/app-info-log.js +1 -1
- package/dist/server/lib/start-server.js +1 -1
- package/dist/shared/lib/canary-only.js +1 -1
- package/dist/telemetry/anonymous-meta.js +1 -1
- package/dist/telemetry/events/session-stopped.js +2 -2
- package/dist/telemetry/events/version.js +2 -2
- package/package.json +15 -15
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../../src/server/config-schema.ts"],"sourcesContent":["import type { NextConfig } from './config'\nimport { VALID_LOADERS } from '../shared/lib/image-config'\n\nimport { z } from 'next/dist/compiled/zod'\nimport type zod from 'next/dist/compiled/zod'\n\nimport type { SizeLimit } from '../types'\nimport type {\n ExportPathMap,\n TurbopackLoaderItem,\n TurbopackOptions,\n TurbopackRuleConfigItem,\n TurbopackRuleConfigCollection,\n TurbopackRuleCondition,\n TurbopackLoaderBuiltinCondition,\n} from './config-shared'\nimport type {\n Header,\n Rewrite,\n RouteHas,\n Redirect,\n} from '../lib/load-custom-routes'\nimport { SUPPORTED_TEST_RUNNERS_LIST } from '../cli/next-test'\n\n// A custom zod schema for the SizeLimit type\nconst zSizeLimit = z.custom<SizeLimit>((val) => {\n if (typeof val === 'number' || typeof val === 'string') {\n return true\n }\n return false\n})\n\nconst zExportMap: zod.ZodType<ExportPathMap> = z.record(\n z.string(),\n z.object({\n page: z.string(),\n query: z.any(), // NextParsedUrlQuery\n\n // private optional properties\n _fallbackRouteParams: z.array(z.any()).optional(),\n _isAppDir: z.boolean().optional(),\n _isDynamicError: z.boolean().optional(),\n _isRoutePPREnabled: z.boolean().optional(),\n _allowEmptyStaticShell: z.boolean().optional(),\n })\n)\n\nconst zRouteHas: zod.ZodType<RouteHas> = z.union([\n z.object({\n type: z.enum(['header', 'query', 'cookie']),\n key: z.string(),\n value: z.string().optional(),\n }),\n z.object({\n type: z.literal('host'),\n key: z.undefined().optional(),\n value: z.string(),\n }),\n])\n\nconst zRewrite: zod.ZodType<Rewrite> = z.object({\n source: z.string(),\n destination: z.string(),\n basePath: z.literal(false).optional(),\n locale: z.literal(false).optional(),\n has: z.array(zRouteHas).optional(),\n missing: z.array(zRouteHas).optional(),\n internal: z.boolean().optional(),\n})\n\nconst zRedirect: zod.ZodType<Redirect> = z\n .object({\n source: z.string(),\n destination: z.string(),\n basePath: z.literal(false).optional(),\n locale: z.literal(false).optional(),\n has: z.array(zRouteHas).optional(),\n missing: z.array(zRouteHas).optional(),\n internal: z.boolean().optional(),\n })\n .and(\n z.union([\n z.object({\n statusCode: z.never().optional(),\n permanent: z.boolean(),\n }),\n z.object({\n statusCode: z.number(),\n permanent: z.never().optional(),\n }),\n ])\n )\n\nconst zHeader: zod.ZodType<Header> = z.object({\n source: z.string(),\n basePath: z.literal(false).optional(),\n locale: z.literal(false).optional(),\n headers: z.array(z.object({ key: z.string(), value: z.string() })),\n has: z.array(zRouteHas).optional(),\n missing: z.array(zRouteHas).optional(),\n\n internal: z.boolean().optional(),\n})\n\nconst zTurbopackLoaderItem: zod.ZodType<TurbopackLoaderItem> = z.union([\n z.string(),\n z.strictObject({\n loader: z.string(),\n // Any JSON value can be used as turbo loader options, so use z.any() here\n options: z.record(z.string(), z.any()).optional(),\n }),\n])\n\nconst zTurbopackLoaderBuiltinCondition: zod.ZodType<TurbopackLoaderBuiltinCondition> =\n z.union([\n z.literal('browser'),\n z.literal('foreign'),\n z.literal('development'),\n z.literal('production'),\n z.literal('node'),\n z.literal('edge-light'),\n ])\n\nconst zTurbopackCondition: zod.ZodType<TurbopackRuleCondition> = z.union([\n z.strictObject({ all: z.lazy(() => z.array(zTurbopackCondition)) }),\n z.strictObject({ any: z.lazy(() => z.array(zTurbopackCondition)) }),\n z.strictObject({ not: z.lazy(() => zTurbopackCondition) }),\n zTurbopackLoaderBuiltinCondition,\n z.strictObject({\n path: z.union([z.string(), z.instanceof(RegExp)]).optional(),\n content: z.instanceof(RegExp).optional(),\n }),\n])\n\nconst zTurbopackRuleConfigItem: zod.ZodType<TurbopackRuleConfigItem> =\n z.strictObject({\n loaders: z.array(zTurbopackLoaderItem),\n as: z.string().optional(),\n condition: zTurbopackCondition.optional(),\n })\n\nconst zTurbopackRuleConfigCollection: zod.ZodType<TurbopackRuleConfigCollection> =\n z.union([\n zTurbopackRuleConfigItem,\n z.array(z.union([zTurbopackLoaderItem, zTurbopackRuleConfigItem])),\n ])\n\nconst zTurbopackConfig: zod.ZodType<TurbopackOptions> = z.strictObject({\n rules: z.record(z.string(), zTurbopackRuleConfigCollection).optional(),\n resolveAlias: z\n .record(\n z.string(),\n z.union([\n z.string(),\n z.array(z.string()),\n z.record(z.string(), z.union([z.string(), z.array(z.string())])),\n ])\n )\n .optional(),\n resolveExtensions: z.array(z.string()).optional(),\n root: z.string().optional(),\n})\n\nexport const configSchema: zod.ZodType<NextConfig> = z.lazy(() =>\n z.strictObject({\n allowedDevOrigins: z.array(z.string()).optional(),\n amp: z\n .object({\n canonicalBase: z.string().optional(),\n })\n .optional(),\n assetPrefix: z.string().optional(),\n basePath: z.string().optional(),\n bundlePagesRouterDependencies: z.boolean().optional(),\n cacheHandler: z.string().min(1).optional(),\n cacheMaxMemorySize: z.number().optional(),\n cleanDistDir: z.boolean().optional(),\n compiler: z\n .strictObject({\n emotion: z\n .union([\n z.boolean(),\n z.object({\n sourceMap: z.boolean().optional(),\n autoLabel: z\n .union([\n z.literal('always'),\n z.literal('dev-only'),\n z.literal('never'),\n ])\n .optional(),\n labelFormat: z.string().min(1).optional(),\n importMap: z\n .record(\n z.string(),\n z.record(\n z.string(),\n z.object({\n canonicalImport: z\n .tuple([z.string(), z.string()])\n .optional(),\n styledBaseImport: z\n .tuple([z.string(), z.string()])\n .optional(),\n })\n )\n )\n .optional(),\n }),\n ])\n .optional(),\n reactRemoveProperties: z\n .union([\n z.boolean().optional(),\n z.object({\n properties: z.array(z.string()).optional(),\n }),\n ])\n .optional(),\n relay: z\n .object({\n src: z.string(),\n artifactDirectory: z.string().optional(),\n language: z.enum(['javascript', 'typescript', 'flow']).optional(),\n eagerEsModules: z.boolean().optional(),\n })\n .optional(),\n removeConsole: z\n .union([\n z.boolean().optional(),\n z.object({\n exclude: z.array(z.string()).min(1).optional(),\n }),\n ])\n .optional(),\n styledComponents: z.union([\n z.boolean().optional(),\n z.object({\n displayName: z.boolean().optional(),\n topLevelImportPaths: z.array(z.string()).optional(),\n ssr: z.boolean().optional(),\n fileName: z.boolean().optional(),\n meaninglessFileNames: z.array(z.string()).optional(),\n minify: z.boolean().optional(),\n transpileTemplateLiterals: z.boolean().optional(),\n namespace: z.string().min(1).optional(),\n pure: z.boolean().optional(),\n cssProp: z.boolean().optional(),\n }),\n ]),\n styledJsx: z.union([\n z.boolean().optional(),\n z.object({\n useLightningcss: z.boolean().optional(),\n }),\n ]),\n define: z.record(z.string(), z.string()).optional(),\n defineServer: z.record(z.string(), z.string()).optional(),\n runAfterProductionCompile: z\n .function()\n .returns(z.promise(z.void()))\n .optional(),\n })\n .optional(),\n compress: z.boolean().optional(),\n configOrigin: z.string().optional(),\n crossOrigin: z\n .union([z.literal('anonymous'), z.literal('use-credentials')])\n .optional(),\n deploymentId: z.string().optional(),\n devIndicators: z\n .union([\n z.object({\n position: z\n .union([\n z.literal('bottom-left'),\n z.literal('bottom-right'),\n z.literal('top-left'),\n z.literal('top-right'),\n ])\n .optional(),\n }),\n z.literal(false),\n ])\n .optional(),\n distDir: z.string().min(1).optional(),\n env: z.record(z.string(), z.union([z.string(), z.undefined()])).optional(),\n eslint: z\n .strictObject({\n dirs: z.array(z.string().min(1)).optional(),\n ignoreDuringBuilds: z.boolean().optional(),\n })\n .optional(),\n excludeDefaultMomentLocales: z.boolean().optional(),\n experimental: z\n .strictObject({\n adapterPath: z.string().optional(),\n useSkewCookie: z.boolean().optional(),\n after: z.boolean().optional(),\n appNavFailHandling: z.boolean().optional(),\n preloadEntriesOnStart: z.boolean().optional(),\n allowedRevalidateHeaderKeys: z.array(z.string()).optional(),\n amp: z\n .object({\n // AMP optimizer option is unknown, use z.any() here\n optimizer: z.any().optional(),\n skipValidation: z.boolean().optional(),\n validator: z.string().optional(),\n })\n .optional(),\n staleTimes: z\n .object({\n dynamic: z.number().optional(),\n static: z.number().optional(),\n })\n .optional(),\n cacheLife: z\n .record(\n z.object({\n stale: z.number().optional(),\n revalidate: z.number().optional(),\n expire: z.number().optional(),\n })\n )\n .optional(),\n cacheHandlers: z.record(z.string(), z.string().optional()).optional(),\n clientRouterFilter: z.boolean().optional(),\n clientRouterFilterRedirects: z.boolean().optional(),\n clientRouterFilterAllowedRate: z.number().optional(),\n cpus: z.number().optional(),\n memoryBasedWorkersCount: z.boolean().optional(),\n craCompat: z.boolean().optional(),\n caseSensitiveRoutes: z.boolean().optional(),\n clientSegmentCache: z\n .union([z.boolean(), z.literal('client-only')])\n .optional(),\n rdcForNavigations: z.boolean().optional(),\n clientParamParsing: z.boolean().optional(),\n clientParamParsingOrigins: z.array(z.string()).optional(),\n dynamicOnHover: z.boolean().optional(),\n disableOptimizedLoading: z.boolean().optional(),\n disablePostcssPresetEnv: z.boolean().optional(),\n cacheComponents: z.boolean().optional(),\n dynamicIO: z.boolean().optional(),\n inlineCss: z.boolean().optional(),\n esmExternals: z.union([z.boolean(), z.literal('loose')]).optional(),\n serverActions: z\n .object({\n bodySizeLimit: zSizeLimit.optional(),\n allowedOrigins: z.array(z.string()).optional(),\n })\n .optional(),\n // The original type was Record<string, any>\n extensionAlias: z.record(z.string(), z.any()).optional(),\n externalDir: z.boolean().optional(),\n externalMiddlewareRewritesResolve: z.boolean().optional(),\n fallbackNodePolyfills: z.literal(false).optional(),\n fetchCacheKeyPrefix: z.string().optional(),\n forceSwcTransforms: z.boolean().optional(),\n fullySpecified: z.boolean().optional(),\n gzipSize: z.boolean().optional(),\n imgOptConcurrency: z.number().int().optional().nullable(),\n imgOptTimeoutInSeconds: z.number().int().optional(),\n imgOptMaxInputPixels: z.number().int().optional(),\n imgOptSequentialRead: z.boolean().optional().nullable(),\n imgOptSkipMetadata: z.boolean().optional().nullable(),\n isrFlushToDisk: z.boolean().optional(),\n largePageDataBytes: z.number().optional(),\n linkNoTouchStart: z.boolean().optional(),\n manualClientBasePath: z.boolean().optional(),\n middlewarePrefetch: z.enum(['strict', 'flexible']).optional(),\n multiZoneDraftMode: z.boolean().optional(),\n cssChunking: z.union([z.boolean(), z.literal('strict')]).optional(),\n nextScriptWorkers: z.boolean().optional(),\n // The critter option is unknown, use z.any() here\n optimizeCss: z.union([z.boolean(), z.any()]).optional(),\n optimisticClientCache: z.boolean().optional(),\n parallelServerCompiles: z.boolean().optional(),\n parallelServerBuildTraces: z.boolean().optional(),\n ppr: z\n .union([z.boolean(), z.literal('incremental')])\n .readonly()\n .optional(),\n taint: z.boolean().optional(),\n prerenderEarlyExit: z.boolean().optional(),\n proxyTimeout: z.number().gte(0).optional(),\n rootParams: z.boolean().optional(),\n isolatedDevBuild: z.boolean().optional(),\n mcpServer: z.boolean().optional(),\n routerBFCache: z.boolean().optional(),\n removeUncaughtErrorAndRejectionListeners: z.boolean().optional(),\n validateRSCRequestHeaders: z.boolean().optional(),\n scrollRestoration: z.boolean().optional(),\n sri: z\n .object({\n algorithm: z.enum(['sha256', 'sha384', 'sha512']).optional(),\n })\n .optional(),\n swcPlugins: z\n // The specific swc plugin's option is unknown, use z.any() here\n .array(z.tuple([z.string(), z.record(z.string(), z.any())]))\n .optional(),\n swcTraceProfiling: z.boolean().optional(),\n // NonNullable<webpack.Configuration['experiments']>['buildHttp']\n urlImports: z.any().optional(),\n viewTransition: z.boolean().optional(),\n workerThreads: z.boolean().optional(),\n webVitalsAttribution: z\n .array(\n z.union([\n z.literal('CLS'),\n z.literal('FCP'),\n z.literal('FID'),\n z.literal('INP'),\n z.literal('LCP'),\n z.literal('TTFB'),\n ])\n )\n .optional(),\n // This is partial set of mdx-rs transform options we support, aligned\n // with next_core::next_config::MdxRsOptions. Ensure both types are kept in sync.\n mdxRs: z\n .union([\n z.boolean(),\n z.object({\n development: z.boolean().optional(),\n jsxRuntime: z.string().optional(),\n jsxImportSource: z.string().optional(),\n providerImportSource: z.string().optional(),\n mdxType: z.enum(['gfm', 'commonmark']).optional(),\n }),\n ])\n .optional(),\n typedRoutes: z.boolean().optional(),\n webpackBuildWorker: z.boolean().optional(),\n webpackMemoryOptimizations: z.boolean().optional(),\n turbopackMemoryLimit: z.number().optional(),\n turbopackMinify: z.boolean().optional(),\n turbopackPersistentCachingForDev: z.boolean().optional(),\n turbopackPersistentCachingForBuild: z.boolean().optional(),\n turbopackSourceMaps: z.boolean().optional(),\n turbopackTreeShaking: z.boolean().optional(),\n turbopackRemoveUnusedExports: z.boolean().optional(),\n turbopackScopeHoisting: z.boolean().optional(),\n turbopackImportTypeBytes: z.boolean().optional(),\n turbopackUseSystemTlsCerts: z.boolean().optional(),\n turbopackUseBuiltinBabel: z.boolean().optional(),\n turbopackUseBuiltinSass: z.boolean().optional(),\n turbopackModuleIds: z.enum(['named', 'deterministic']).optional(),\n optimizePackageImports: z.array(z.string()).optional(),\n optimizeServerReact: z.boolean().optional(),\n clientTraceMetadata: z.array(z.string()).optional(),\n serverMinification: z.boolean().optional(),\n enablePrerenderSourceMaps: z.boolean().optional(),\n serverSourceMaps: z.boolean().optional(),\n useWasmBinary: z.boolean().optional(),\n useLightningcss: z.boolean().optional(),\n testProxy: z.boolean().optional(),\n defaultTestRunner: z.enum(SUPPORTED_TEST_RUNNERS_LIST).optional(),\n allowDevelopmentBuild: z.literal(true).optional(),\n\n reactDebugChannel: z.boolean().optional(),\n staticGenerationRetryCount: z.number().int().optional(),\n staticGenerationMaxConcurrency: z.number().int().optional(),\n staticGenerationMinPagesPerWorker: z.number().int().optional(),\n typedEnv: z.boolean().optional(),\n serverComponentsHmrCache: z.boolean().optional(),\n authInterrupts: z.boolean().optional(),\n useCache: z.boolean().optional(),\n slowModuleDetection: z\n .object({\n buildTimeThresholdMs: z.number().int(),\n })\n .optional(),\n globalNotFound: z.boolean().optional(),\n browserDebugInfoInTerminal: z\n .union([\n z.boolean(),\n z.object({\n depthLimit: z.number().int().positive().optional(),\n edgeLimit: z.number().int().positive().optional(),\n showSourceLocation: z.boolean().optional(),\n }),\n ])\n .optional(),\n })\n .optional(),\n exportPathMap: z\n .function()\n .args(\n zExportMap,\n z.object({\n dev: z.boolean(),\n dir: z.string(),\n outDir: z.string().nullable(),\n distDir: z.string(),\n buildId: z.string(),\n })\n )\n .returns(z.union([zExportMap, z.promise(zExportMap)]))\n .optional(),\n generateBuildId: z\n .function()\n .args()\n .returns(\n z.union([\n z.string(),\n z.null(),\n z.promise(z.union([z.string(), z.null()])),\n ])\n )\n .optional(),\n generateEtags: z.boolean().optional(),\n headers: z\n .function()\n .args()\n .returns(z.promise(z.array(zHeader)))\n .optional(),\n htmlLimitedBots: z.instanceof(RegExp).optional(),\n httpAgentOptions: z\n .strictObject({ keepAlive: z.boolean().optional() })\n .optional(),\n i18n: z\n .strictObject({\n defaultLocale: z.string().min(1),\n domains: z\n .array(\n z.strictObject({\n defaultLocale: z.string().min(1),\n domain: z.string().min(1),\n http: z.literal(true).optional(),\n locales: z.array(z.string().min(1)).optional(),\n })\n )\n .optional(),\n localeDetection: z.literal(false).optional(),\n locales: z.array(z.string().min(1)),\n })\n .nullable()\n .optional(),\n images: z\n .strictObject({\n localPatterns: z\n .array(\n z.strictObject({\n pathname: z.string().optional(),\n search: z.string().optional(),\n })\n )\n .max(25)\n .optional(),\n remotePatterns: z\n .array(\n z.union([\n z.instanceof(URL),\n z.strictObject({\n hostname: z.string(),\n pathname: z.string().optional(),\n port: z.string().max(5).optional(),\n protocol: z.enum(['http', 'https']).optional(),\n search: z.string().optional(),\n }),\n ])\n )\n .max(50)\n .optional(),\n unoptimized: z.boolean().optional(),\n contentSecurityPolicy: z.string().optional(),\n contentDispositionType: z.enum(['inline', 'attachment']).optional(),\n dangerouslyAllowSVG: z.boolean().optional(),\n deviceSizes: z\n .array(z.number().int().gte(1).lte(10000))\n .max(25)\n .optional(),\n disableStaticImages: z.boolean().optional(),\n domains: z.array(z.string()).max(50).optional(),\n formats: z\n .array(z.enum(['image/avif', 'image/webp']))\n .max(4)\n .optional(),\n imageSizes: z\n .array(z.number().int().gte(1).lte(10000))\n .min(0)\n .max(25)\n .optional(),\n loader: z.enum(VALID_LOADERS).optional(),\n loaderFile: z.string().optional(),\n minimumCacheTTL: z.number().int().gte(0).optional(),\n path: z.string().optional(),\n qualities: z\n .array(z.number().int().gte(1).lte(100))\n .min(1)\n .max(20)\n .optional(),\n })\n .optional(),\n logging: z\n .union([\n z.object({\n fetches: z\n .object({\n fullUrl: z.boolean().optional(),\n hmrRefreshes: z.boolean().optional(),\n })\n .optional(),\n incomingRequests: z\n .union([\n z.boolean(),\n z.object({\n ignore: z.array(z.instanceof(RegExp)),\n }),\n ])\n .optional(),\n }),\n z.literal(false),\n ])\n .optional(),\n modularizeImports: z\n .record(\n z.string(),\n z.object({\n transform: z.union([z.string(), z.record(z.string(), z.string())]),\n preventFullImport: z.boolean().optional(),\n skipDefaultConversion: z.boolean().optional(),\n })\n )\n .optional(),\n onDemandEntries: z\n .strictObject({\n maxInactiveAge: z.number().optional(),\n pagesBufferLength: z.number().optional(),\n })\n .optional(),\n output: z.enum(['standalone', 'export']).optional(),\n outputFileTracingRoot: z.string().optional(),\n outputFileTracingExcludes: z\n .record(z.string(), z.array(z.string()))\n .optional(),\n outputFileTracingIncludes: z\n .record(z.string(), z.array(z.string()))\n .optional(),\n pageExtensions: z.array(z.string()).min(1).optional(),\n poweredByHeader: z.boolean().optional(),\n productionBrowserSourceMaps: z.boolean().optional(),\n publicRuntimeConfig: z.record(z.string(), z.any()).optional(),\n reactCompiler: z.union([\n z.boolean(),\n z\n .object({\n compilationMode: z.enum(['infer', 'annotation', 'all']).optional(),\n panicThreshold: z\n .enum(['none', 'critical_errors', 'all_errors'])\n .optional(),\n })\n .optional(),\n ]),\n reactProductionProfiling: z.boolean().optional(),\n reactStrictMode: z.boolean().nullable().optional(),\n reactMaxHeadersLength: z.number().nonnegative().int().optional(),\n redirects: z\n .function()\n .args()\n .returns(z.promise(z.array(zRedirect)))\n .optional(),\n rewrites: z\n .function()\n .args()\n .returns(\n z.promise(\n z.union([\n z.array(zRewrite),\n z.object({\n beforeFiles: z.array(zRewrite),\n afterFiles: z.array(zRewrite),\n fallback: z.array(zRewrite),\n }),\n ])\n )\n )\n .optional(),\n // sassOptions properties are unknown besides implementation, use z.any() here\n sassOptions: z\n .object({\n implementation: z.string().optional(),\n })\n .catchall(z.any())\n .optional(),\n serverExternalPackages: z.array(z.string()).optional(),\n serverRuntimeConfig: z.record(z.string(), z.any()).optional(),\n skipMiddlewareUrlNormalize: z.boolean().optional(),\n skipTrailingSlashRedirect: z.boolean().optional(),\n staticPageGenerationTimeout: z.number().optional(),\n expireTime: z.number().optional(),\n target: z.string().optional(),\n trailingSlash: z.boolean().optional(),\n transpilePackages: z.array(z.string()).optional(),\n turbopack: zTurbopackConfig.optional(),\n typescript: z\n .strictObject({\n ignoreBuildErrors: z.boolean().optional(),\n tsconfigPath: z.string().min(1).optional(),\n })\n .optional(),\n typedRoutes: z.boolean().optional(),\n useFileSystemPublicRoutes: z.boolean().optional(),\n // The webpack config type is unknown, use z.any() here\n webpack: z.any().nullable().optional(),\n watchOptions: z\n .strictObject({\n pollIntervalMs: z.number().positive().finite().optional(),\n })\n .optional(),\n })\n)\n"],"names":["configSchema","zSizeLimit","z","custom","val","zExportMap","record","string","object","page","query","any","_fallbackRouteParams","array","optional","_isAppDir","boolean","_isDynamicError","_isRoutePPREnabled","_allowEmptyStaticShell","zRouteHas","union","type","enum","key","value","literal","undefined","zRewrite","source","destination","basePath","locale","has","missing","internal","zRedirect","and","statusCode","never","permanent","number","zHeader","headers","zTurbopackLoaderItem","strictObject","loader","options","zTurbopackLoaderBuiltinCondition","zTurbopackCondition","all","lazy","not","path","instanceof","RegExp","content","zTurbopackRuleConfigItem","loaders","as","condition","zTurbopackRuleConfigCollection","zTurbopackConfig","rules","resolveAlias","resolveExtensions","root","allowedDevOrigins","amp","canonicalBase","assetPrefix","bundlePagesRouterDependencies","cacheHandler","min","cacheMaxMemorySize","cleanDistDir","compiler","emotion","sourceMap","autoLabel","labelFormat","importMap","canonicalImport","tuple","styledBaseImport","reactRemoveProperties","properties","relay","src","artifactDirectory","language","eagerEsModules","removeConsole","exclude","styledComponents","displayName","topLevelImportPaths","ssr","fileName","meaninglessFileNames","minify","transpileTemplateLiterals","namespace","pure","cssProp","styledJsx","useLightningcss","define","defineServer","runAfterProductionCompile","function","returns","promise","void","compress","configOrigin","crossOrigin","deploymentId","devIndicators","position","distDir","env","eslint","dirs","ignoreDuringBuilds","excludeDefaultMomentLocales","experimental","adapterPath","useSkewCookie","after","appNavFailHandling","preloadEntriesOnStart","allowedRevalidateHeaderKeys","optimizer","skipValidation","validator","staleTimes","dynamic","static","cacheLife","stale","revalidate","expire","cacheHandlers","clientRouterFilter","clientRouterFilterRedirects","clientRouterFilterAllowedRate","cpus","memoryBasedWorkersCount","craCompat","caseSensitiveRoutes","clientSegmentCache","rdcForNavigations","clientParamParsing","clientParamParsingOrigins","dynamicOnHover","disableOptimizedLoading","disablePostcssPresetEnv","cacheComponents","dynamicIO","inlineCss","esmExternals","serverActions","bodySizeLimit","allowedOrigins","extensionAlias","externalDir","externalMiddlewareRewritesResolve","fallbackNodePolyfills","fetchCacheKeyPrefix","forceSwcTransforms","fullySpecified","gzipSize","imgOptConcurrency","int","nullable","imgOptTimeoutInSeconds","imgOptMaxInputPixels","imgOptSequentialRead","imgOptSkipMetadata","isrFlushToDisk","largePageDataBytes","linkNoTouchStart","manualClientBasePath","middlewarePrefetch","multiZoneDraftMode","cssChunking","nextScriptWorkers","optimizeCss","optimisticClientCache","parallelServerCompiles","parallelServerBuildTraces","ppr","readonly","taint","prerenderEarlyExit","proxyTimeout","gte","rootParams","isolatedDevBuild","mcpServer","routerBFCache","removeUncaughtErrorAndRejectionListeners","validateRSCRequestHeaders","scrollRestoration","sri","algorithm","swcPlugins","swcTraceProfiling","urlImports","viewTransition","workerThreads","webVitalsAttribution","mdxRs","development","jsxRuntime","jsxImportSource","providerImportSource","mdxType","typedRoutes","webpackBuildWorker","webpackMemoryOptimizations","turbopackMemoryLimit","turbopackMinify","turbopackPersistentCachingForDev","turbopackPersistentCachingForBuild","turbopackSourceMaps","turbopackTreeShaking","turbopackRemoveUnusedExports","turbopackScopeHoisting","turbopackImportTypeBytes","turbopackUseSystemTlsCerts","turbopackUseBuiltinBabel","turbopackUseBuiltinSass","turbopackModuleIds","optimizePackageImports","optimizeServerReact","clientTraceMetadata","serverMinification","enablePrerenderSourceMaps","serverSourceMaps","useWasmBinary","testProxy","defaultTestRunner","SUPPORTED_TEST_RUNNERS_LIST","allowDevelopmentBuild","reactDebugChannel","staticGenerationRetryCount","staticGenerationMaxConcurrency","staticGenerationMinPagesPerWorker","typedEnv","serverComponentsHmrCache","authInterrupts","useCache","slowModuleDetection","buildTimeThresholdMs","globalNotFound","browserDebugInfoInTerminal","depthLimit","positive","edgeLimit","showSourceLocation","exportPathMap","args","dev","dir","outDir","buildId","generateBuildId","null","generateEtags","htmlLimitedBots","httpAgentOptions","keepAlive","i18n","defaultLocale","domains","domain","http","locales","localeDetection","images","localPatterns","pathname","search","max","remotePatterns","URL","hostname","port","protocol","unoptimized","contentSecurityPolicy","contentDispositionType","dangerouslyAllowSVG","deviceSizes","lte","disableStaticImages","formats","imageSizes","VALID_LOADERS","loaderFile","minimumCacheTTL","qualities","logging","fetches","fullUrl","hmrRefreshes","incomingRequests","ignore","modularizeImports","transform","preventFullImport","skipDefaultConversion","onDemandEntries","maxInactiveAge","pagesBufferLength","output","outputFileTracingRoot","outputFileTracingExcludes","outputFileTracingIncludes","pageExtensions","poweredByHeader","productionBrowserSourceMaps","publicRuntimeConfig","reactCompiler","compilationMode","panicThreshold","reactProductionProfiling","reactStrictMode","reactMaxHeadersLength","nonnegative","redirects","rewrites","beforeFiles","afterFiles","fallback","sassOptions","implementation","catchall","serverExternalPackages","serverRuntimeConfig","skipMiddlewareUrlNormalize","skipTrailingSlashRedirect","staticPageGenerationTimeout","expireTime","target","trailingSlash","transpilePackages","turbopack","typescript","ignoreBuildErrors","tsconfigPath","useFileSystemPublicRoutes","webpack","watchOptions","pollIntervalMs","finite"],"mappings":"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","ignoreList":[0]}
|
1
|
+
{"version":3,"sources":["../../src/server/config-schema.ts"],"sourcesContent":["import type { NextConfig } from './config'\nimport { VALID_LOADERS } from '../shared/lib/image-config'\n\nimport { z } from 'next/dist/compiled/zod'\nimport type zod from 'next/dist/compiled/zod'\n\nimport type { SizeLimit } from '../types'\nimport type {\n ExportPathMap,\n TurbopackLoaderItem,\n TurbopackOptions,\n TurbopackRuleConfigItem,\n TurbopackRuleConfigCollection,\n TurbopackRuleCondition,\n TurbopackLoaderBuiltinCondition,\n} from './config-shared'\nimport type {\n Header,\n Rewrite,\n RouteHas,\n Redirect,\n} from '../lib/load-custom-routes'\nimport { SUPPORTED_TEST_RUNNERS_LIST } from '../cli/next-test'\n\n// A custom zod schema for the SizeLimit type\nconst zSizeLimit = z.custom<SizeLimit>((val) => {\n if (typeof val === 'number' || typeof val === 'string') {\n return true\n }\n return false\n})\n\nconst zExportMap: zod.ZodType<ExportPathMap> = z.record(\n z.string(),\n z.object({\n page: z.string(),\n query: z.any(), // NextParsedUrlQuery\n\n // private optional properties\n _fallbackRouteParams: z.array(z.any()).optional(),\n _isAppDir: z.boolean().optional(),\n _isDynamicError: z.boolean().optional(),\n _isRoutePPREnabled: z.boolean().optional(),\n _allowEmptyStaticShell: z.boolean().optional(),\n })\n)\n\nconst zRouteHas: zod.ZodType<RouteHas> = z.union([\n z.object({\n type: z.enum(['header', 'query', 'cookie']),\n key: z.string(),\n value: z.string().optional(),\n }),\n z.object({\n type: z.literal('host'),\n key: z.undefined().optional(),\n value: z.string(),\n }),\n])\n\nconst zRewrite: zod.ZodType<Rewrite> = z.object({\n source: z.string(),\n destination: z.string(),\n basePath: z.literal(false).optional(),\n locale: z.literal(false).optional(),\n has: z.array(zRouteHas).optional(),\n missing: z.array(zRouteHas).optional(),\n internal: z.boolean().optional(),\n})\n\nconst zRedirect: zod.ZodType<Redirect> = z\n .object({\n source: z.string(),\n destination: z.string(),\n basePath: z.literal(false).optional(),\n locale: z.literal(false).optional(),\n has: z.array(zRouteHas).optional(),\n missing: z.array(zRouteHas).optional(),\n internal: z.boolean().optional(),\n })\n .and(\n z.union([\n z.object({\n statusCode: z.never().optional(),\n permanent: z.boolean(),\n }),\n z.object({\n statusCode: z.number(),\n permanent: z.never().optional(),\n }),\n ])\n )\n\nconst zHeader: zod.ZodType<Header> = z.object({\n source: z.string(),\n basePath: z.literal(false).optional(),\n locale: z.literal(false).optional(),\n headers: z.array(z.object({ key: z.string(), value: z.string() })),\n has: z.array(zRouteHas).optional(),\n missing: z.array(zRouteHas).optional(),\n\n internal: z.boolean().optional(),\n})\n\nconst zTurbopackLoaderItem: zod.ZodType<TurbopackLoaderItem> = z.union([\n z.string(),\n z.strictObject({\n loader: z.string(),\n // Any JSON value can be used as turbo loader options, so use z.any() here\n options: z.record(z.string(), z.any()).optional(),\n }),\n])\n\nconst zTurbopackLoaderBuiltinCondition: zod.ZodType<TurbopackLoaderBuiltinCondition> =\n z.union([\n z.literal('browser'),\n z.literal('foreign'),\n z.literal('development'),\n z.literal('production'),\n z.literal('node'),\n z.literal('edge-light'),\n ])\n\nconst zTurbopackCondition: zod.ZodType<TurbopackRuleCondition> = z.union([\n z.strictObject({ all: z.lazy(() => z.array(zTurbopackCondition)) }),\n z.strictObject({ any: z.lazy(() => z.array(zTurbopackCondition)) }),\n z.strictObject({ not: z.lazy(() => zTurbopackCondition) }),\n zTurbopackLoaderBuiltinCondition,\n z.strictObject({\n path: z.union([z.string(), z.instanceof(RegExp)]).optional(),\n content: z.instanceof(RegExp).optional(),\n }),\n])\n\nconst zTurbopackRuleConfigItem: zod.ZodType<TurbopackRuleConfigItem> =\n z.strictObject({\n loaders: z.array(zTurbopackLoaderItem),\n as: z.string().optional(),\n condition: zTurbopackCondition.optional(),\n })\n\nconst zTurbopackRuleConfigCollection: zod.ZodType<TurbopackRuleConfigCollection> =\n z.union([\n zTurbopackRuleConfigItem,\n z.array(z.union([zTurbopackLoaderItem, zTurbopackRuleConfigItem])),\n ])\n\nconst zTurbopackConfig: zod.ZodType<TurbopackOptions> = z.strictObject({\n rules: z.record(z.string(), zTurbopackRuleConfigCollection).optional(),\n resolveAlias: z\n .record(\n z.string(),\n z.union([\n z.string(),\n z.array(z.string()),\n z.record(z.string(), z.union([z.string(), z.array(z.string())])),\n ])\n )\n .optional(),\n resolveExtensions: z.array(z.string()).optional(),\n root: z.string().optional(),\n debugIds: z.boolean().optional(),\n})\n\nexport const configSchema: zod.ZodType<NextConfig> = z.lazy(() =>\n z.strictObject({\n allowedDevOrigins: z.array(z.string()).optional(),\n amp: z\n .object({\n canonicalBase: z.string().optional(),\n })\n .optional(),\n assetPrefix: z.string().optional(),\n basePath: z.string().optional(),\n bundlePagesRouterDependencies: z.boolean().optional(),\n cacheHandler: z.string().min(1).optional(),\n cacheMaxMemorySize: z.number().optional(),\n cleanDistDir: z.boolean().optional(),\n compiler: z\n .strictObject({\n emotion: z\n .union([\n z.boolean(),\n z.object({\n sourceMap: z.boolean().optional(),\n autoLabel: z\n .union([\n z.literal('always'),\n z.literal('dev-only'),\n z.literal('never'),\n ])\n .optional(),\n labelFormat: z.string().min(1).optional(),\n importMap: z\n .record(\n z.string(),\n z.record(\n z.string(),\n z.object({\n canonicalImport: z\n .tuple([z.string(), z.string()])\n .optional(),\n styledBaseImport: z\n .tuple([z.string(), z.string()])\n .optional(),\n })\n )\n )\n .optional(),\n }),\n ])\n .optional(),\n reactRemoveProperties: z\n .union([\n z.boolean().optional(),\n z.object({\n properties: z.array(z.string()).optional(),\n }),\n ])\n .optional(),\n relay: z\n .object({\n src: z.string(),\n artifactDirectory: z.string().optional(),\n language: z.enum(['javascript', 'typescript', 'flow']).optional(),\n eagerEsModules: z.boolean().optional(),\n })\n .optional(),\n removeConsole: z\n .union([\n z.boolean().optional(),\n z.object({\n exclude: z.array(z.string()).min(1).optional(),\n }),\n ])\n .optional(),\n styledComponents: z.union([\n z.boolean().optional(),\n z.object({\n displayName: z.boolean().optional(),\n topLevelImportPaths: z.array(z.string()).optional(),\n ssr: z.boolean().optional(),\n fileName: z.boolean().optional(),\n meaninglessFileNames: z.array(z.string()).optional(),\n minify: z.boolean().optional(),\n transpileTemplateLiterals: z.boolean().optional(),\n namespace: z.string().min(1).optional(),\n pure: z.boolean().optional(),\n cssProp: z.boolean().optional(),\n }),\n ]),\n styledJsx: z.union([\n z.boolean().optional(),\n z.object({\n useLightningcss: z.boolean().optional(),\n }),\n ]),\n define: z.record(z.string(), z.string()).optional(),\n defineServer: z.record(z.string(), z.string()).optional(),\n runAfterProductionCompile: z\n .function()\n .returns(z.promise(z.void()))\n .optional(),\n })\n .optional(),\n compress: z.boolean().optional(),\n configOrigin: z.string().optional(),\n crossOrigin: z\n .union([z.literal('anonymous'), z.literal('use-credentials')])\n .optional(),\n deploymentId: z.string().optional(),\n devIndicators: z\n .union([\n z.object({\n position: z\n .union([\n z.literal('bottom-left'),\n z.literal('bottom-right'),\n z.literal('top-left'),\n z.literal('top-right'),\n ])\n .optional(),\n }),\n z.literal(false),\n ])\n .optional(),\n distDir: z.string().min(1).optional(),\n env: z.record(z.string(), z.union([z.string(), z.undefined()])).optional(),\n eslint: z\n .strictObject({\n dirs: z.array(z.string().min(1)).optional(),\n ignoreDuringBuilds: z.boolean().optional(),\n })\n .optional(),\n excludeDefaultMomentLocales: z.boolean().optional(),\n experimental: z\n .strictObject({\n adapterPath: z.string().optional(),\n useSkewCookie: z.boolean().optional(),\n after: z.boolean().optional(),\n appNavFailHandling: z.boolean().optional(),\n preloadEntriesOnStart: z.boolean().optional(),\n allowedRevalidateHeaderKeys: z.array(z.string()).optional(),\n amp: z\n .object({\n // AMP optimizer option is unknown, use z.any() here\n optimizer: z.any().optional(),\n skipValidation: z.boolean().optional(),\n validator: z.string().optional(),\n })\n .optional(),\n staleTimes: z\n .object({\n dynamic: z.number().optional(),\n static: z.number().optional(),\n })\n .optional(),\n cacheLife: z\n .record(\n z.object({\n stale: z.number().optional(),\n revalidate: z.number().optional(),\n expire: z.number().optional(),\n })\n )\n .optional(),\n cacheHandlers: z.record(z.string(), z.string().optional()).optional(),\n clientRouterFilter: z.boolean().optional(),\n clientRouterFilterRedirects: z.boolean().optional(),\n clientRouterFilterAllowedRate: z.number().optional(),\n cpus: z.number().optional(),\n memoryBasedWorkersCount: z.boolean().optional(),\n craCompat: z.boolean().optional(),\n caseSensitiveRoutes: z.boolean().optional(),\n clientSegmentCache: z\n .union([z.boolean(), z.literal('client-only')])\n .optional(),\n rdcForNavigations: z.boolean().optional(),\n clientParamParsing: z.boolean().optional(),\n clientParamParsingOrigins: z.array(z.string()).optional(),\n dynamicOnHover: z.boolean().optional(),\n disableOptimizedLoading: z.boolean().optional(),\n disablePostcssPresetEnv: z.boolean().optional(),\n cacheComponents: z.boolean().optional(),\n dynamicIO: z.boolean().optional(),\n inlineCss: z.boolean().optional(),\n esmExternals: z.union([z.boolean(), z.literal('loose')]).optional(),\n serverActions: z\n .object({\n bodySizeLimit: zSizeLimit.optional(),\n allowedOrigins: z.array(z.string()).optional(),\n })\n .optional(),\n // The original type was Record<string, any>\n extensionAlias: z.record(z.string(), z.any()).optional(),\n externalDir: z.boolean().optional(),\n externalMiddlewareRewritesResolve: z.boolean().optional(),\n fallbackNodePolyfills: z.literal(false).optional(),\n fetchCacheKeyPrefix: z.string().optional(),\n forceSwcTransforms: z.boolean().optional(),\n fullySpecified: z.boolean().optional(),\n gzipSize: z.boolean().optional(),\n imgOptConcurrency: z.number().int().optional().nullable(),\n imgOptTimeoutInSeconds: z.number().int().optional(),\n imgOptMaxInputPixels: z.number().int().optional(),\n imgOptSequentialRead: z.boolean().optional().nullable(),\n imgOptSkipMetadata: z.boolean().optional().nullable(),\n isrFlushToDisk: z.boolean().optional(),\n largePageDataBytes: z.number().optional(),\n linkNoTouchStart: z.boolean().optional(),\n manualClientBasePath: z.boolean().optional(),\n middlewarePrefetch: z.enum(['strict', 'flexible']).optional(),\n multiZoneDraftMode: z.boolean().optional(),\n cssChunking: z.union([z.boolean(), z.literal('strict')]).optional(),\n nextScriptWorkers: z.boolean().optional(),\n // The critter option is unknown, use z.any() here\n optimizeCss: z.union([z.boolean(), z.any()]).optional(),\n optimisticClientCache: z.boolean().optional(),\n parallelServerCompiles: z.boolean().optional(),\n parallelServerBuildTraces: z.boolean().optional(),\n ppr: z\n .union([z.boolean(), z.literal('incremental')])\n .readonly()\n .optional(),\n taint: z.boolean().optional(),\n prerenderEarlyExit: z.boolean().optional(),\n proxyTimeout: z.number().gte(0).optional(),\n rootParams: z.boolean().optional(),\n isolatedDevBuild: z.boolean().optional(),\n mcpServer: z.boolean().optional(),\n routerBFCache: z.boolean().optional(),\n removeUncaughtErrorAndRejectionListeners: z.boolean().optional(),\n validateRSCRequestHeaders: z.boolean().optional(),\n scrollRestoration: z.boolean().optional(),\n sri: z\n .object({\n algorithm: z.enum(['sha256', 'sha384', 'sha512']).optional(),\n })\n .optional(),\n swcPlugins: z\n // The specific swc plugin's option is unknown, use z.any() here\n .array(z.tuple([z.string(), z.record(z.string(), z.any())]))\n .optional(),\n swcTraceProfiling: z.boolean().optional(),\n // NonNullable<webpack.Configuration['experiments']>['buildHttp']\n urlImports: z.any().optional(),\n viewTransition: z.boolean().optional(),\n workerThreads: z.boolean().optional(),\n webVitalsAttribution: z\n .array(\n z.union([\n z.literal('CLS'),\n z.literal('FCP'),\n z.literal('FID'),\n z.literal('INP'),\n z.literal('LCP'),\n z.literal('TTFB'),\n ])\n )\n .optional(),\n // This is partial set of mdx-rs transform options we support, aligned\n // with next_core::next_config::MdxRsOptions. Ensure both types are kept in sync.\n mdxRs: z\n .union([\n z.boolean(),\n z.object({\n development: z.boolean().optional(),\n jsxRuntime: z.string().optional(),\n jsxImportSource: z.string().optional(),\n providerImportSource: z.string().optional(),\n mdxType: z.enum(['gfm', 'commonmark']).optional(),\n }),\n ])\n .optional(),\n typedRoutes: z.boolean().optional(),\n webpackBuildWorker: z.boolean().optional(),\n webpackMemoryOptimizations: z.boolean().optional(),\n turbopackMemoryLimit: z.number().optional(),\n turbopackMinify: z.boolean().optional(),\n turbopackPersistentCachingForDev: z.boolean().optional(),\n turbopackPersistentCachingForBuild: z.boolean().optional(),\n turbopackSourceMaps: z.boolean().optional(),\n turbopackTreeShaking: z.boolean().optional(),\n turbopackRemoveUnusedExports: z.boolean().optional(),\n turbopackScopeHoisting: z.boolean().optional(),\n turbopackImportTypeBytes: z.boolean().optional(),\n turbopackUseSystemTlsCerts: z.boolean().optional(),\n turbopackUseBuiltinBabel: z.boolean().optional(),\n turbopackUseBuiltinSass: z.boolean().optional(),\n turbopackModuleIds: z.enum(['named', 'deterministic']).optional(),\n optimizePackageImports: z.array(z.string()).optional(),\n optimizeServerReact: z.boolean().optional(),\n clientTraceMetadata: z.array(z.string()).optional(),\n serverMinification: z.boolean().optional(),\n enablePrerenderSourceMaps: z.boolean().optional(),\n serverSourceMaps: z.boolean().optional(),\n useWasmBinary: z.boolean().optional(),\n useLightningcss: z.boolean().optional(),\n testProxy: z.boolean().optional(),\n defaultTestRunner: z.enum(SUPPORTED_TEST_RUNNERS_LIST).optional(),\n allowDevelopmentBuild: z.literal(true).optional(),\n\n reactDebugChannel: z.boolean().optional(),\n staticGenerationRetryCount: z.number().int().optional(),\n staticGenerationMaxConcurrency: z.number().int().optional(),\n staticGenerationMinPagesPerWorker: z.number().int().optional(),\n typedEnv: z.boolean().optional(),\n serverComponentsHmrCache: z.boolean().optional(),\n authInterrupts: z.boolean().optional(),\n useCache: z.boolean().optional(),\n slowModuleDetection: z\n .object({\n buildTimeThresholdMs: z.number().int(),\n })\n .optional(),\n globalNotFound: z.boolean().optional(),\n browserDebugInfoInTerminal: z\n .union([\n z.boolean(),\n z.object({\n depthLimit: z.number().int().positive().optional(),\n edgeLimit: z.number().int().positive().optional(),\n showSourceLocation: z.boolean().optional(),\n }),\n ])\n .optional(),\n })\n .optional(),\n exportPathMap: z\n .function()\n .args(\n zExportMap,\n z.object({\n dev: z.boolean(),\n dir: z.string(),\n outDir: z.string().nullable(),\n distDir: z.string(),\n buildId: z.string(),\n })\n )\n .returns(z.union([zExportMap, z.promise(zExportMap)]))\n .optional(),\n generateBuildId: z\n .function()\n .args()\n .returns(\n z.union([\n z.string(),\n z.null(),\n z.promise(z.union([z.string(), z.null()])),\n ])\n )\n .optional(),\n generateEtags: z.boolean().optional(),\n headers: z\n .function()\n .args()\n .returns(z.promise(z.array(zHeader)))\n .optional(),\n htmlLimitedBots: z.instanceof(RegExp).optional(),\n httpAgentOptions: z\n .strictObject({ keepAlive: z.boolean().optional() })\n .optional(),\n i18n: z\n .strictObject({\n defaultLocale: z.string().min(1),\n domains: z\n .array(\n z.strictObject({\n defaultLocale: z.string().min(1),\n domain: z.string().min(1),\n http: z.literal(true).optional(),\n locales: z.array(z.string().min(1)).optional(),\n })\n )\n .optional(),\n localeDetection: z.literal(false).optional(),\n locales: z.array(z.string().min(1)),\n })\n .nullable()\n .optional(),\n images: z\n .strictObject({\n localPatterns: z\n .array(\n z.strictObject({\n pathname: z.string().optional(),\n search: z.string().optional(),\n })\n )\n .max(25)\n .optional(),\n remotePatterns: z\n .array(\n z.union([\n z.instanceof(URL),\n z.strictObject({\n hostname: z.string(),\n pathname: z.string().optional(),\n port: z.string().max(5).optional(),\n protocol: z.enum(['http', 'https']).optional(),\n search: z.string().optional(),\n }),\n ])\n )\n .max(50)\n .optional(),\n unoptimized: z.boolean().optional(),\n contentSecurityPolicy: z.string().optional(),\n contentDispositionType: z.enum(['inline', 'attachment']).optional(),\n dangerouslyAllowSVG: z.boolean().optional(),\n deviceSizes: z\n .array(z.number().int().gte(1).lte(10000))\n .max(25)\n .optional(),\n disableStaticImages: z.boolean().optional(),\n domains: z.array(z.string()).max(50).optional(),\n formats: z\n .array(z.enum(['image/avif', 'image/webp']))\n .max(4)\n .optional(),\n imageSizes: z\n .array(z.number().int().gte(1).lte(10000))\n .min(0)\n .max(25)\n .optional(),\n loader: z.enum(VALID_LOADERS).optional(),\n loaderFile: z.string().optional(),\n minimumCacheTTL: z.number().int().gte(0).optional(),\n path: z.string().optional(),\n qualities: z\n .array(z.number().int().gte(1).lte(100))\n .min(1)\n .max(20)\n .optional(),\n })\n .optional(),\n logging: z\n .union([\n z.object({\n fetches: z\n .object({\n fullUrl: z.boolean().optional(),\n hmrRefreshes: z.boolean().optional(),\n })\n .optional(),\n incomingRequests: z\n .union([\n z.boolean(),\n z.object({\n ignore: z.array(z.instanceof(RegExp)),\n }),\n ])\n .optional(),\n }),\n z.literal(false),\n ])\n .optional(),\n modularizeImports: z\n .record(\n z.string(),\n z.object({\n transform: z.union([z.string(), z.record(z.string(), z.string())]),\n preventFullImport: z.boolean().optional(),\n skipDefaultConversion: z.boolean().optional(),\n })\n )\n .optional(),\n onDemandEntries: z\n .strictObject({\n maxInactiveAge: z.number().optional(),\n pagesBufferLength: z.number().optional(),\n })\n .optional(),\n output: z.enum(['standalone', 'export']).optional(),\n outputFileTracingRoot: z.string().optional(),\n outputFileTracingExcludes: z\n .record(z.string(), z.array(z.string()))\n .optional(),\n outputFileTracingIncludes: z\n .record(z.string(), z.array(z.string()))\n .optional(),\n pageExtensions: z.array(z.string()).min(1).optional(),\n poweredByHeader: z.boolean().optional(),\n productionBrowserSourceMaps: z.boolean().optional(),\n publicRuntimeConfig: z.record(z.string(), z.any()).optional(),\n reactCompiler: z.union([\n z.boolean(),\n z\n .object({\n compilationMode: z.enum(['infer', 'annotation', 'all']).optional(),\n panicThreshold: z\n .enum(['none', 'critical_errors', 'all_errors'])\n .optional(),\n })\n .optional(),\n ]),\n reactProductionProfiling: z.boolean().optional(),\n reactStrictMode: z.boolean().nullable().optional(),\n reactMaxHeadersLength: z.number().nonnegative().int().optional(),\n redirects: z\n .function()\n .args()\n .returns(z.promise(z.array(zRedirect)))\n .optional(),\n rewrites: z\n .function()\n .args()\n .returns(\n z.promise(\n z.union([\n z.array(zRewrite),\n z.object({\n beforeFiles: z.array(zRewrite),\n afterFiles: z.array(zRewrite),\n fallback: z.array(zRewrite),\n }),\n ])\n )\n )\n .optional(),\n // sassOptions properties are unknown besides implementation, use z.any() here\n sassOptions: z\n .object({\n implementation: z.string().optional(),\n })\n .catchall(z.any())\n .optional(),\n serverExternalPackages: z.array(z.string()).optional(),\n serverRuntimeConfig: z.record(z.string(), z.any()).optional(),\n skipMiddlewareUrlNormalize: z.boolean().optional(),\n skipTrailingSlashRedirect: z.boolean().optional(),\n staticPageGenerationTimeout: z.number().optional(),\n expireTime: z.number().optional(),\n target: z.string().optional(),\n trailingSlash: z.boolean().optional(),\n transpilePackages: z.array(z.string()).optional(),\n turbopack: zTurbopackConfig.optional(),\n typescript: z\n .strictObject({\n ignoreBuildErrors: z.boolean().optional(),\n tsconfigPath: z.string().min(1).optional(),\n })\n .optional(),\n typedRoutes: z.boolean().optional(),\n useFileSystemPublicRoutes: z.boolean().optional(),\n // The webpack config type is unknown, use z.any() here\n webpack: z.any().nullable().optional(),\n watchOptions: z\n .strictObject({\n pollIntervalMs: z.number().positive().finite().optional(),\n })\n .optional(),\n })\n)\n"],"names":["configSchema","zSizeLimit","z","custom","val","zExportMap","record","string","object","page","query","any","_fallbackRouteParams","array","optional","_isAppDir","boolean","_isDynamicError","_isRoutePPREnabled","_allowEmptyStaticShell","zRouteHas","union","type","enum","key","value","literal","undefined","zRewrite","source","destination","basePath","locale","has","missing","internal","zRedirect","and","statusCode","never","permanent","number","zHeader","headers","zTurbopackLoaderItem","strictObject","loader","options","zTurbopackLoaderBuiltinCondition","zTurbopackCondition","all","lazy","not","path","instanceof","RegExp","content","zTurbopackRuleConfigItem","loaders","as","condition","zTurbopackRuleConfigCollection","zTurbopackConfig","rules","resolveAlias","resolveExtensions","root","debugIds","allowedDevOrigins","amp","canonicalBase","assetPrefix","bundlePagesRouterDependencies","cacheHandler","min","cacheMaxMemorySize","cleanDistDir","compiler","emotion","sourceMap","autoLabel","labelFormat","importMap","canonicalImport","tuple","styledBaseImport","reactRemoveProperties","properties","relay","src","artifactDirectory","language","eagerEsModules","removeConsole","exclude","styledComponents","displayName","topLevelImportPaths","ssr","fileName","meaninglessFileNames","minify","transpileTemplateLiterals","namespace","pure","cssProp","styledJsx","useLightningcss","define","defineServer","runAfterProductionCompile","function","returns","promise","void","compress","configOrigin","crossOrigin","deploymentId","devIndicators","position","distDir","env","eslint","dirs","ignoreDuringBuilds","excludeDefaultMomentLocales","experimental","adapterPath","useSkewCookie","after","appNavFailHandling","preloadEntriesOnStart","allowedRevalidateHeaderKeys","optimizer","skipValidation","validator","staleTimes","dynamic","static","cacheLife","stale","revalidate","expire","cacheHandlers","clientRouterFilter","clientRouterFilterRedirects","clientRouterFilterAllowedRate","cpus","memoryBasedWorkersCount","craCompat","caseSensitiveRoutes","clientSegmentCache","rdcForNavigations","clientParamParsing","clientParamParsingOrigins","dynamicOnHover","disableOptimizedLoading","disablePostcssPresetEnv","cacheComponents","dynamicIO","inlineCss","esmExternals","serverActions","bodySizeLimit","allowedOrigins","extensionAlias","externalDir","externalMiddlewareRewritesResolve","fallbackNodePolyfills","fetchCacheKeyPrefix","forceSwcTransforms","fullySpecified","gzipSize","imgOptConcurrency","int","nullable","imgOptTimeoutInSeconds","imgOptMaxInputPixels","imgOptSequentialRead","imgOptSkipMetadata","isrFlushToDisk","largePageDataBytes","linkNoTouchStart","manualClientBasePath","middlewarePrefetch","multiZoneDraftMode","cssChunking","nextScriptWorkers","optimizeCss","optimisticClientCache","parallelServerCompiles","parallelServerBuildTraces","ppr","readonly","taint","prerenderEarlyExit","proxyTimeout","gte","rootParams","isolatedDevBuild","mcpServer","routerBFCache","removeUncaughtErrorAndRejectionListeners","validateRSCRequestHeaders","scrollRestoration","sri","algorithm","swcPlugins","swcTraceProfiling","urlImports","viewTransition","workerThreads","webVitalsAttribution","mdxRs","development","jsxRuntime","jsxImportSource","providerImportSource","mdxType","typedRoutes","webpackBuildWorker","webpackMemoryOptimizations","turbopackMemoryLimit","turbopackMinify","turbopackPersistentCachingForDev","turbopackPersistentCachingForBuild","turbopackSourceMaps","turbopackTreeShaking","turbopackRemoveUnusedExports","turbopackScopeHoisting","turbopackImportTypeBytes","turbopackUseSystemTlsCerts","turbopackUseBuiltinBabel","turbopackUseBuiltinSass","turbopackModuleIds","optimizePackageImports","optimizeServerReact","clientTraceMetadata","serverMinification","enablePrerenderSourceMaps","serverSourceMaps","useWasmBinary","testProxy","defaultTestRunner","SUPPORTED_TEST_RUNNERS_LIST","allowDevelopmentBuild","reactDebugChannel","staticGenerationRetryCount","staticGenerationMaxConcurrency","staticGenerationMinPagesPerWorker","typedEnv","serverComponentsHmrCache","authInterrupts","useCache","slowModuleDetection","buildTimeThresholdMs","globalNotFound","browserDebugInfoInTerminal","depthLimit","positive","edgeLimit","showSourceLocation","exportPathMap","args","dev","dir","outDir","buildId","generateBuildId","null","generateEtags","htmlLimitedBots","httpAgentOptions","keepAlive","i18n","defaultLocale","domains","domain","http","locales","localeDetection","images","localPatterns","pathname","search","max","remotePatterns","URL","hostname","port","protocol","unoptimized","contentSecurityPolicy","contentDispositionType","dangerouslyAllowSVG","deviceSizes","lte","disableStaticImages","formats","imageSizes","VALID_LOADERS","loaderFile","minimumCacheTTL","qualities","logging","fetches","fullUrl","hmrRefreshes","incomingRequests","ignore","modularizeImports","transform","preventFullImport","skipDefaultConversion","onDemandEntries","maxInactiveAge","pagesBufferLength","output","outputFileTracingRoot","outputFileTracingExcludes","outputFileTracingIncludes","pageExtensions","poweredByHeader","productionBrowserSourceMaps","publicRuntimeConfig","reactCompiler","compilationMode","panicThreshold","reactProductionProfiling","reactStrictMode","reactMaxHeadersLength","nonnegative","redirects","rewrites","beforeFiles","afterFiles","fallback","sassOptions","implementation","catchall","serverExternalPackages","serverRuntimeConfig","skipMiddlewareUrlNormalize","skipTrailingSlashRedirect","staticPageGenerationTimeout","expireTime","target","trailingSlash","transpilePackages","turbopack","typescript","ignoreBuildErrors","tsconfigPath","useFileSystemPublicRoutes","webpack","watchOptions","pollIntervalMs","finite"],"mappings":"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","ignoreList":[0]}
|
@@ -127,6 +127,13 @@ export interface TurbopackOptions {
|
|
127
127
|
* directory can be resolved by turbopack.
|
128
128
|
*/
|
129
129
|
root?: string;
|
130
|
+
/**
|
131
|
+
* Enables generation of debug IDs in JavaScript bundles and source maps.
|
132
|
+
* These debug IDs help with debugging and error tracking by providing stable identifiers.
|
133
|
+
*
|
134
|
+
* @see https://github.com/tc39/ecma426/blob/main/proposals/debug-id.md TC39 Debug ID Proposal
|
135
|
+
*/
|
136
|
+
debugIds?: boolean;
|
130
137
|
}
|
131
138
|
export interface WebpackConfigContext {
|
132
139
|
/** Next.js root directory */
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../../src/server/config-shared.ts"],"sourcesContent":["import os from 'os'\nimport type { webpack } from 'next/dist/compiled/webpack/webpack'\nimport type { Header, Redirect, Rewrite } from '../lib/load-custom-routes'\nimport { imageConfigDefault } from '../shared/lib/image-config'\nimport type {\n ImageConfig,\n ImageConfigComplete,\n} from '../shared/lib/image-config'\nimport type { SubresourceIntegrityAlgorithm } from '../build/webpack/plugins/subresource-integrity-plugin'\nimport type { WEB_VITALS } from '../shared/lib/utils'\nimport type { NextParsedUrlQuery } from './request-meta'\nimport type { SizeLimit } from '../types'\nimport type { SupportedTestRunners } from '../cli/next-test'\nimport type { ExperimentalPPRConfig } from './lib/experimental/ppr'\nimport { INFINITE_CACHE } from '../lib/constants'\nimport { isStableBuild } from '../shared/lib/canary-only'\nimport type { FallbackRouteParam } from '../build/static-paths/types'\n\nexport type NextConfigComplete = Required<Omit<NextConfig, 'configFile'>> & {\n images: Required<ImageConfigComplete>\n typescript: TypeScriptConfig\n configFile: string | undefined\n configFileName: string\n // override NextConfigComplete.experimental.htmlLimitedBots to string\n // because it's not defined in NextConfigComplete.experimental\n htmlLimitedBots: string | undefined\n experimental: ExperimentalConfig\n}\n\nexport type I18NDomains = readonly DomainLocale[]\n\nexport interface I18NConfig {\n defaultLocale: string\n domains?: I18NDomains\n localeDetection?: false\n locales: readonly string[]\n}\n\nexport interface DomainLocale {\n defaultLocale: string\n domain: string\n http?: true\n locales?: readonly string[]\n}\n\nexport interface ESLintConfig {\n /** Only run ESLint on these directories with `next lint` and `next build`. */\n dirs?: string[]\n /** Do not run ESLint during production builds (`next build`). */\n ignoreDuringBuilds?: boolean\n}\n\nexport interface TypeScriptConfig {\n /** Do not run TypeScript during production builds (`next build`). */\n ignoreBuildErrors?: boolean\n /** Relative path to a custom tsconfig file */\n tsconfigPath?: string\n}\n\nexport interface EmotionConfig {\n sourceMap?: boolean\n autoLabel?: 'dev-only' | 'always' | 'never'\n labelFormat?: string\n importMap?: {\n [importName: string]: {\n [exportName: string]: {\n canonicalImport?: [string, string]\n styledBaseImport?: [string, string]\n }\n }\n }\n}\n\nexport interface StyledComponentsConfig {\n /**\n * Enabled by default in development, disabled in production to reduce file size,\n * setting this will override the default for all environments.\n */\n displayName?: boolean\n topLevelImportPaths?: string[]\n ssr?: boolean\n fileName?: boolean\n meaninglessFileNames?: string[]\n minify?: boolean\n transpileTemplateLiterals?: boolean\n namespace?: string\n pure?: boolean\n cssProp?: boolean\n}\n\nexport type JSONValue =\n | string\n | number\n | boolean\n | JSONValue[]\n | { [k: string]: JSONValue }\n\n// At the moment, Turbopack options must be JSON-serializable, so restrict values.\nexport type TurbopackLoaderOptions = Record<string, JSONValue>\n\nexport type TurbopackLoaderItem =\n | string\n | {\n loader: string\n options?: TurbopackLoaderOptions\n }\n\nexport type TurbopackLoaderBuiltinCondition =\n | 'browser'\n | 'foreign'\n | 'development'\n | 'production'\n | 'node'\n | 'edge-light'\n\nexport type TurbopackRuleCondition =\n | { all: TurbopackRuleCondition[] }\n | { any: TurbopackRuleCondition[] }\n | { not: TurbopackRuleCondition }\n | TurbopackLoaderBuiltinCondition\n | {\n path?: string | RegExp\n content?: RegExp\n }\n\nexport type TurbopackRuleConfigItem = {\n loaders: TurbopackLoaderItem[]\n as?: string\n condition?: TurbopackRuleCondition\n}\n\n/**\n * This can be an object representing a single configuration, or a list of\n * loaders and/or rule configuration objects.\n *\n * - A list of loader path strings or objects is the \"shorthand\" syntax.\n * - A list of rule configuration objects can be useful when each configuration\n * object has different `condition` fields, but still match the same top-level\n * path glob.\n */\nexport type TurbopackRuleConfigCollection =\n | TurbopackRuleConfigItem\n | (TurbopackLoaderItem | TurbopackRuleConfigItem)[]\n\nexport interface TurbopackOptions {\n /**\n * (`next --turbopack` only) A mapping of aliased imports to modules to load in their place.\n *\n * @see [Resolve Alias](https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#resolving-aliases)\n */\n resolveAlias?: Record<\n string,\n string | string[] | Record<string, string | string[]>\n >\n\n /**\n * (`next --turbopack` only) A list of extensions to resolve when importing files.\n *\n * @see [Resolve Extensions](https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#resolving-custom-extensions)\n */\n resolveExtensions?: string[]\n\n /**\n * (`next --turbopack` only) A list of webpack loaders to apply when running with Turbopack.\n *\n * @see [Turbopack Loaders](https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#configuring-webpack-loaders)\n */\n rules?: Record<string, TurbopackRuleConfigCollection>\n\n /**\n * This is the repo root usually and only files above this\n * directory can be resolved by turbopack.\n */\n root?: string\n}\n\nexport interface WebpackConfigContext {\n /** Next.js root directory */\n dir: string\n /** Indicates if the compilation will be done in development */\n dev: boolean\n /** It's `true` for server-side compilation, and `false` for client-side compilation */\n isServer: boolean\n /** The build id, used as a unique identifier between builds */\n buildId: string\n /** The next.config.js merged with default values */\n config: NextConfigComplete\n /** Default loaders used internally by Next.js */\n defaultLoaders: {\n /** Default babel-loader configuration */\n babel: any\n }\n /** Number of total Next.js pages */\n totalPages: number\n /** The webpack configuration */\n webpack: any\n /** The current server runtime */\n nextRuntime?: 'nodejs' | 'edge'\n}\n\nexport interface NextJsWebpackConfig {\n (\n /** Existing Webpack config */\n config: any,\n context: WebpackConfigContext\n ): any\n}\n\n/**\n * Set of options for React Compiler that Next.js currently supports.\n *\n * These options may be changed in breaking ways at any time without notice\n * while support for React Compiler is experimental.\n *\n * @see https://react.dev/reference/react-compiler/configuration\n */\nexport interface ReactCompilerOptions {\n /**\n * Controls the strategy for determining which functions the React Compiler\n * will optimize.\n *\n * The default is `'infer'`, which uses intelligent heuristics to identify\n * React components and hooks.\n *\n * When using `infer`, Next.js applies its own heuristics before calling\n * `react-compiler`. This improves compilation performance by avoiding extra\n * invocations of Babel and reducing redundant parsing of code.\n *\n * @see https://react.dev/reference/react-compiler/compilationMode\n */\n compilationMode?: 'infer' | 'annotation' | 'all'\n /**\n * Controls how the React Compiler handles errors during compilation.\n *\n * The default is `'none'`, which skips components which cannot be compiled.\n *\n * @see https://react.dev/reference/react-compiler/panicThreshold\n */\n panicThreshold?: 'none' | 'critical_errors' | 'all_errors'\n}\n\nexport interface IncomingRequestLoggingConfig {\n /**\n * A regular expression array to match incoming requests that should not be logged.\n * You can specify multiple patterns to match incoming requests that should not be logged.\n */\n ignore?: RegExp[]\n}\n\nexport interface LoggingConfig {\n fetches?: {\n fullUrl?: boolean\n /**\n * If true, fetch requests that are restored from the HMR cache are logged\n * during an HMR refresh request, i.e. when editing a server component.\n */\n hmrRefreshes?: boolean\n }\n\n /**\n * If set to false, incoming request logging is disabled.\n * You can specify a pattern to match incoming requests that should not be logged.\n */\n incomingRequests?: boolean | IncomingRequestLoggingConfig\n}\n\nexport interface ExperimentalConfig {\n adapterPath?: string\n useSkewCookie?: boolean\n cacheHandlers?: {\n default?: string\n remote?: string\n static?: string\n [handlerName: string]: string | undefined\n }\n multiZoneDraftMode?: boolean\n appNavFailHandling?: boolean\n prerenderEarlyExit?: boolean\n linkNoTouchStart?: boolean\n caseSensitiveRoutes?: boolean\n clientSegmentCache?: boolean | 'client-only'\n\n /**\n * Enables RDC for Dynamic Navigations. This is only supported for App Router\n * when Partial Prerendering is also enabled. This is enabled by default when\n * Partial Prerendering is enabled.\n */\n rdcForNavigations?: boolean\n clientParamParsing?: boolean\n\n /**\n * The origins that are allowed to write the rewritten headers when\n * performing a non-relative rewrite. When undefined, no non-relative\n * rewrites will get the rewrite headers.\n */\n clientParamParsingOrigins?: string[]\n dynamicOnHover?: boolean\n preloadEntriesOnStart?: boolean\n clientRouterFilter?: boolean\n clientRouterFilterRedirects?: boolean\n /**\n * This config can be used to override the cache behavior for the client router.\n * These values indicate the time, in seconds, that the cache should be considered\n * reusable. When the `prefetch` Link prop is left unspecified, this will use the `dynamic` value.\n * When the `prefetch` Link prop is set to `true`, this will use the `static` value.\n */\n staleTimes?: {\n dynamic?: number\n static?: number\n }\n cacheLife?: {\n [profile: string]: {\n // How long the client can cache a value without checking with the server.\n stale?: number\n // How frequently you want the cache to refresh on the server.\n // Stale values may be served while revalidating.\n revalidate?: number\n // In the worst case scenario, where you haven't had traffic in a while,\n // how stale can a value be until you prefer deopting to dynamic.\n // Must be longer than revalidate.\n expire?: number\n }\n }\n // decimal for percent for possible false positives\n // e.g. 0.01 for 10% potential false matches lower\n // percent increases size of the filter\n clientRouterFilterAllowedRate?: number\n externalMiddlewareRewritesResolve?: boolean\n extensionAlias?: Record<string, any>\n allowedRevalidateHeaderKeys?: string[]\n fetchCacheKeyPrefix?: string\n imgOptConcurrency?: number | null\n imgOptTimeoutInSeconds?: number\n imgOptMaxInputPixels?: number\n imgOptSequentialRead?: boolean | null\n imgOptSkipMetadata?: boolean | null\n optimisticClientCache?: boolean\n /**\n * @deprecated use config.expireTime instead\n */\n expireTime?: number\n middlewarePrefetch?: 'strict' | 'flexible'\n manualClientBasePath?: boolean\n /**\n * CSS Chunking strategy. Defaults to `true` (\"loose\" mode), which guesses dependencies\n * between CSS files to keep ordering of them.\n * An alternative is 'strict', which will try to keep correct ordering as\n * much as possible, even when this leads to many requests.\n */\n cssChunking?: boolean | 'strict'\n disablePostcssPresetEnv?: boolean\n cpus?: number\n memoryBasedWorkersCount?: boolean\n proxyTimeout?: number\n isrFlushToDisk?: boolean\n workerThreads?: boolean\n // optimizeCss can be boolean or critters' option object\n // Use Record<string, unknown> as critters doesn't export its Option type\n // https://github.com/GoogleChromeLabs/critters/blob/a590c05f9197b656d2aeaae9369df2483c26b072/packages/critters/src/index.d.ts\n optimizeCss?: boolean | Record<string, unknown>\n nextScriptWorkers?: boolean\n scrollRestoration?: boolean\n externalDir?: boolean\n /** @deprecated built-in amp support will be removed in Next 16 */\n amp?: {\n optimizer?: any\n validator?: string\n skipValidation?: boolean\n }\n disableOptimizedLoading?: boolean\n\n /** @deprecated A no-op as of Next 16, size metrics were removed from the build output. */\n gzipSize?: boolean\n craCompat?: boolean\n esmExternals?: boolean | 'loose'\n fullySpecified?: boolean\n urlImports?: NonNullable<webpack.Configuration['experiments']>['buildHttp']\n swcTraceProfiling?: boolean\n forceSwcTransforms?: boolean\n\n swcPlugins?: Array<[string, Record<string, unknown>]>\n largePageDataBytes?: number\n /**\n * If set to `false`, webpack won't fall back to polyfill Node.js modules in the browser\n * Full list of old polyfills is accessible here:\n * [webpack/webpack#ModuleNotoundError.js#L13-L42](https://github.com/webpack/webpack/blob/2a0536cf510768111a3a6dceeb14cb79b9f59273/lib/ModuleNotFoundError.js#L13-L42)\n */\n fallbackNodePolyfills?: false\n sri?: {\n algorithm?: SubresourceIntegrityAlgorithm\n }\n\n webVitalsAttribution?: Array<(typeof WEB_VITALS)[number]>\n\n /**\n * Automatically apply the \"modularizeImports\" optimization to imports of the specified packages.\n */\n optimizePackageImports?: string[]\n\n /**\n * Optimize React APIs for server builds.\n */\n optimizeServerReact?: boolean\n\n /**\n * A target memory limit for turbo, in bytes.\n */\n turbopackMemoryLimit?: number\n\n /**\n * Enable minification. Defaults to true in build mode and false in dev mode.\n */\n turbopackMinify?: boolean\n\n /**\n * Enable support for `with {type: \"module\"}` for ESM imports.\n */\n turbopackImportTypeBytes?: boolean\n\n /**\n * Enable scope hoisting. Defaults to true in build mode. Always disabled in development mode.\n */\n turbopackScopeHoisting?: boolean\n\n /**\n * Enable persistent caching for the turbopack dev server.\n */\n turbopackPersistentCachingForDev?: boolean\n\n /**\n * Enable persistent caching for the turbopack build.\n */\n turbopackPersistentCachingForBuild?: boolean\n\n /**\n * Enable source maps. Defaults to true.\n */\n turbopackSourceMaps?: boolean\n\n /**\n * Enable tree shaking for the turbopack dev server and build.\n */\n turbopackTreeShaking?: boolean\n\n /**\n * Enable removing unused exports for turbopack dev server and build.\n */\n turbopackRemoveUnusedExports?: boolean\n\n /**\n * Use the system-provided CA roots instead of bundled CA roots for external HTTPS requests\n * made by Turbopack. Currently this is only used for fetching data from Google Fonts.\n *\n * This may be useful in cases where you or an employer are MITMing traffic.\n *\n * This option is experimental because:\n * - This may cause small performance problems, as it uses [`rustls-native-certs`](\n * https://github.com/rustls/rustls-native-certs).\n * - In the future, this may become the default, and this option may be eliminated, once\n * <https://github.com/seanmonstar/reqwest/issues/2159> is resolved.\n *\n * Users who need to configure this behavior system-wide can override the project\n * configuration using the `NEXT_TURBOPACK_EXPERIMENTAL_USE_SYSTEM_TLS_CERTS=1` environment\n * variable.\n *\n * This option is ignored on Windows on ARM, where the native TLS implementation is always\n * used.\n *\n * If you need to set a proxy, Turbopack [respects the common `HTTP_PROXY` and `HTTPS_PROXY`\n * environment variable convention](https://docs.rs/reqwest/latest/reqwest/#proxies). HTTP\n * proxies are supported, SOCKS proxies are not currently supported.\n */\n turbopackUseSystemTlsCerts?: boolean\n\n /**\n * Set this to `false` to disable the automatic configuration of the babel loader when a Babel\n * configuration file is present. This option is enabled by default.\n *\n * If this is set to `false`, but `reactCompiler` is `true`, the built-in Babel will\n * still be configured, but any Babel configuration files on disk will be ignored. If you wish to\n * use React Compiler with a different manually-configured `babel-loader`, you should disable both\n * this and `reactCompiler`.\n */\n turbopackUseBuiltinBabel?: boolean\n\n /**\n * Set this to `false` to disable the automatic configuration of the sass loader. The sass loader\n * configuration is enabled by default.\n */\n turbopackUseBuiltinSass?: boolean\n\n /**\n * For use with `@next/mdx`. Compile MDX files using the new Rust compiler.\n * @see https://nextjs.org/docs/app/api-reference/next-config-js/mdxRs\n */\n mdxRs?:\n | boolean\n | {\n development?: boolean\n jsx?: boolean\n jsxRuntime?: string\n jsxImportSource?: string\n providerImportSource?: string\n mdxType?: 'gfm' | 'commonmark'\n }\n\n /**\n * Enable type checking for Link and Router.push, etc.\n * @deprecated Use `typedRoutes` instead — this feature is now stable.\n * @see https://nextjs.org/docs/app/api-reference/config/typescript#statically-typed-links\n */\n typedRoutes?: boolean\n\n /**\n * Enable type-checking and autocompletion for environment variables.\n *\n * @default false\n */\n typedEnv?: boolean\n\n /**\n * Runs the compilations for server and edge in parallel instead of in serial.\n * This will make builds faster if there is enough server and edge functions\n * in the application at the cost of more memory.\n *\n * NOTE: This option is only valid when the build process can use workers. See\n * the documentation for `webpackBuildWorker` for more details.\n */\n parallelServerCompiles?: boolean\n\n /**\n * Runs the logic to collect build traces for the server routes in parallel\n * with other work during the compilation. This will increase the speed of\n * the build at the cost of more memory. This option may incur some additional\n * work compared to if the option was disabled since the work is started\n * before data from the client compilation is available to potentially reduce\n * the amount of code that needs to be traced. Despite that, this may still\n * result in faster builds for some applications.\n *\n * Valid values are:\n * - `true`: Collect the server build traces in parallel.\n * - `false`: Do not collect the server build traces in parallel.\n * - `undefined`: Collect server build traces in parallel only in the `experimental-compile` mode.\n *\n * NOTE: This option is only valid when the build process can use workers. See\n * the documentation for `webpackBuildWorker` for more details.\n */\n parallelServerBuildTraces?: boolean\n\n /**\n * Run the Webpack build in a separate process to optimize memory usage during build.\n * Valid values are:\n * - `false`: Disable the Webpack build worker\n * - `true`: Enable the Webpack build worker\n * - `undefined`: Enable the Webpack build worker only if the webpack config is not customized\n */\n webpackBuildWorker?: boolean\n\n /**\n * Enables optimizations to reduce memory usage in Webpack. This reduces the max size of the heap\n * but may increase compile times slightly.\n * Valid values are:\n * - `false`: Disable Webpack memory optimizations (default).\n * - `true`: Enables Webpack memory optimizations.\n */\n webpackMemoryOptimizations?: boolean\n\n /**\n * The array of the meta tags to the client injected by tracing propagation data.\n */\n clientTraceMetadata?: string[]\n\n /**\n * Enables experimental Partial Prerendering feature of Next.js.\n * Using this feature will enable the `react@experimental` for the `app` directory.\n */\n ppr?: ExperimentalPPRConfig\n\n /**\n * Enables experimental taint APIs in React.\n * Using this feature will enable the `react@experimental` for the `app` directory.\n */\n taint?: boolean\n\n /**\n * Enables the Back/Forward Cache for the router.\n */\n routerBFCache?: boolean\n\n /**\n * Uninstalls all \"unhandledRejection\" and \"uncaughtException\" listeners from\n * the global process so that we can override the behavior, which in some\n * runtimes is to exit the process.\n *\n * This is experimental until we've considered the impact in various\n * deployment environments.\n */\n removeUncaughtErrorAndRejectionListeners?: boolean\n\n /**\n * During an RSC request, validates that the request headers match the\n * cache-busting search parameter sent by the client.\n */\n validateRSCRequestHeaders?: boolean\n\n serverActions?: {\n /**\n * Allows adjusting body parser size limit for server actions.\n */\n bodySizeLimit?: SizeLimit\n\n /**\n * Allowed origins that can bypass Server Action's CSRF check. This is helpful\n * when you have reverse proxy in front of your app.\n * @example\n * [\"my-app.com\", \"*.my-app.com\"]\n */\n allowedOrigins?: string[]\n }\n\n /**\n * enables the minification of server code.\n */\n serverMinification?: boolean\n\n /**\n * Enables source maps while generating static pages.\n * Helps with errors during the prerender phase in `next build`.\n */\n enablePrerenderSourceMaps?: boolean\n\n /**\n * Enables source maps generation for the server production bundle.\n */\n serverSourceMaps?: boolean\n\n /**\n * @internal Used by the Next.js internals only.\n */\n trustHostHeader?: boolean\n /**\n * @internal Used by the Next.js internals only.\n */\n isExperimentalCompile?: boolean\n\n useWasmBinary?: boolean\n\n /**\n * Use lightningcss instead of postcss-loader\n */\n useLightningcss?: boolean\n\n /**\n * Enables view transitions by using the {@link https://github.com/facebook/react/pull/31975 unstable_ViewTransition} Component.\n */\n viewTransition?: boolean\n\n /**\n * Enables `fetch` requests to be proxied to the experimental test proxy server\n */\n testProxy?: boolean\n\n /**\n * Set a default test runner to be used by `next experimental-test`.\n */\n defaultTestRunner?: SupportedTestRunners\n /**\n * Allow NODE_ENV=development even for `next build`.\n */\n allowDevelopmentBuild?: true\n /**\n * @deprecated use `config.bundlePagesRouterDependencies` instead\n *\n */\n bundlePagesExternals?: boolean\n /**\n * @deprecated use `config.serverExternalPackages` instead\n *\n */\n serverComponentsExternalPackages?: string[]\n\n /**\n * When enabled, in dev mode, Next.js will send React's debug info through the\n * WebSocket connection, instead of including it in the main RSC payload.\n */\n reactDebugChannel?: boolean\n\n /**\n * The number of times to retry static generation (per page) before giving up.\n */\n staticGenerationRetryCount?: number\n\n /**\n * The amount of pages to export per worker during static generation.\n */\n staticGenerationMaxConcurrency?: number\n\n /**\n * The minimum number of pages to be chunked into each export worker.\n */\n staticGenerationMinPagesPerWorker?: number\n\n /**\n * Allows previously fetched data to be re-used when editing server components.\n */\n serverComponentsHmrCache?: boolean\n\n /**\n * When enabled, will cause IO in App Router to be excluded from prerenders,\n * unless explicitly cached. This also enables the experimental Partial\n * Prerendering feature of Next.js, and it enables `react@experimental` being\n * used for the `app` directory.\n */\n cacheComponents?: boolean\n\n /**\n * @deprecated Use `experimental.cacheComponents` instead.\n */\n dynamicIO?: boolean\n\n /**\n * Render <style> tags inline in the HTML for imported CSS assets.\n * Supports app-router in production mode only.\n */\n inlineCss?: boolean\n\n // TODO: Remove this config when the API is stable.\n /**\n * This config allows you to enable the experimental navigation API `forbidden` and `unauthorized`.\n */\n authInterrupts?: boolean\n\n /**\n * Enables the use of the `\"use cache\"` directive.\n */\n useCache?: boolean\n\n /**\n * Enables detection and reporting of slow modules during development builds.\n * Enabling this may impact build performance to ensure accurate measurements.\n */\n slowModuleDetection?: {\n /**\n * The time threshold in milliseconds for identifying slow modules.\n * Modules taking longer than this build time threshold will be reported.\n */\n buildTimeThresholdMs: number\n }\n\n /**\n * Enables using the global-not-found.js file in the app directory\n *\n */\n globalNotFound?: boolean\n\n /**\n * Enable debug information to be forwarded from browser to dev server stdout/stderr\n */\n browserDebugInfoInTerminal?:\n | boolean\n | {\n /**\n * Option to limit stringification at a specific nesting depth when logging circular objects.\n * @default 5\n */\n depthLimit?: number\n\n /**\n * Maximum number of properties/elements to stringify when logging objects/arrays with circular references.\n * @default 100\n */\n edgeLimit?: number\n /**\n * Whether to include source location information in debug output when available\n */\n showSourceLocation?: boolean\n }\n\n /**\n * Enable accessing root params via the `next/root-params` module.\n */\n rootParams?: boolean\n\n /**\n * Use an isolated directory for development builds to prevent conflicts\n * with production builds. Development builds will use `{distDir}/dev`\n * instead of `{distDir}`.\n */\n isolatedDevBuild?: boolean\n\n /**\n * Enable the Model Context Protocol (MCP) server for AI-assisted development.\n * When enabled, Next.js will expose an MCP server at `/_next/mcp` that provides\n * code intelligence and project context to AI assistants.\n *\n * @default false\n */\n mcpServer?: boolean\n\n /**\n * The module ID strategy to use for Turbopack.\n * If not set, the default is `'named'` for development and `'deterministic'`\n * for production.\n */\n turbopackModuleIds?: 'named' | 'deterministic'\n}\n\nexport type ExportPathMap = {\n [path: string]: {\n page: string\n query?: NextParsedUrlQuery\n\n /**\n * When true, this indicates that this is a pages router page that should\n * be rendered as a fallback.\n *\n * @internal\n */\n _pagesFallback?: boolean\n\n /**\n * The locale that this page should be rendered in.\n *\n * @internal\n */\n _locale?: string\n\n /**\n * The path that was used to generate the page.\n *\n * @internal\n */\n _ssgPath?: string\n\n /**\n * The parameters that are currently unknown.\n *\n * @internal\n */\n _fallbackRouteParams?: readonly FallbackRouteParam[]\n\n /**\n * @internal\n */\n _isAppDir?: boolean\n\n /**\n * @internal\n */\n _isDynamicError?: boolean\n\n /**\n * @internal\n */\n _isRoutePPREnabled?: boolean\n\n /**\n * When true, the page is prerendered as a fallback shell, while allowing\n * any dynamic accesses to result in an empty shell. This is the case when\n * the app has `experimental.ppr` and `experimental.cacheComponents` enabled, and\n * there are also routes prerendered with a more complete set of params.\n * Prerendering those routes would catch any invalid dynamic accesses.\n *\n * @internal\n */\n _allowEmptyStaticShell?: boolean\n }\n}\n\n/**\n * Next.js can be configured through a `next.config.js` file in the root of your project directory.\n *\n * This can change the behavior, enable experimental features, and configure other advanced options.\n *\n * Read more: [Next.js Docs: `next.config.js`](https://nextjs.org/docs/app/api-reference/config/next-config-js)\n */\nexport interface NextConfig {\n allowedDevOrigins?: string[]\n\n exportPathMap?: (\n defaultMap: ExportPathMap,\n ctx: {\n dev: boolean\n dir: string\n outDir: string | null\n distDir: string\n buildId: string\n }\n ) => Promise<ExportPathMap> | ExportPathMap\n\n /**\n * Internationalization configuration\n *\n * @see [Internationalization docs](https://nextjs.org/docs/advanced-features/i18n-routing)\n */\n i18n?: I18NConfig | null\n\n /**\n * @since version 11\n * @see [ESLint configuration](https://nextjs.org/docs/app/api-reference/config/eslint)\n */\n eslint?: ESLintConfig\n\n /**\n * @see [Next.js TypeScript documentation](https://nextjs.org/docs/app/api-reference/config/typescript)\n */\n typescript?: TypeScriptConfig\n\n /**\n * Enable type checking for Link and Router.push, etc.\n * This feature requires TypeScript in your project.\n *\n * @see [Typed Links documentation](https://nextjs.org/docs/app/api-reference/config/typescript#statically-typed-links)\n */\n typedRoutes?: boolean\n\n /**\n * Headers allow you to set custom HTTP headers for an incoming request path.\n *\n * @see [Headers configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/headers)\n */\n headers?: () => Promise<Header[]> | Header[]\n\n /**\n * Rewrites allow you to map an incoming request path to a different destination path.\n *\n * @see [Rewrites configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/rewrites)\n */\n rewrites?: () =>\n | Promise<\n | Rewrite[]\n | {\n beforeFiles?: Rewrite[]\n afterFiles?: Rewrite[]\n fallback?: Rewrite[]\n }\n >\n | Rewrite[]\n | {\n beforeFiles?: Rewrite[]\n afterFiles?: Rewrite[]\n fallback?: Rewrite[]\n }\n\n /**\n * Redirects allow you to redirect an incoming request path to a different destination path.\n *\n * @see [Redirects configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/redirects)\n */\n redirects?: () => Promise<Redirect[]> | Redirect[]\n\n /**\n * @see [Moment.js locales excluded by default](https://nextjs.org/docs/upgrading#momentjs-locales-excluded-by-default)\n */\n excludeDefaultMomentLocales?: boolean\n\n /**\n * Before continuing to add custom webpack configuration to your application make sure Next.js doesn't already support your use-case\n *\n * @see [Custom Webpack Config documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/webpack)\n */\n webpack?: NextJsWebpackConfig | null\n\n /**\n * By default Next.js will redirect urls with trailing slashes to their counterpart without a trailing slash.\n *\n * @default false\n * @see [Trailing Slash Configuration](https://nextjs.org/docs/app/api-reference/config/next-config-js/trailingSlash)\n */\n trailingSlash?: boolean\n\n /**\n * Next.js comes with built-in support for environment variables\n *\n * @see [Environment Variables documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/env)\n */\n env?: Record<string, string | undefined>\n\n /**\n * Destination directory (defaults to `.next`)\n */\n distDir?: string\n\n /**\n * The build output directory (defaults to `.next`) is now cleared by default except for the Next.js caches.\n */\n cleanDistDir?: boolean\n\n /**\n * To set up a CDN, you can set up an asset prefix and configure your CDN's origin to resolve to the domain that Next.js is hosted on.\n *\n * @see [CDN Support with Asset Prefix](https://nextjs.org/docs/app/api-reference/config/next-config-js/assetPrefix)\n */\n assetPrefix?: string\n\n /**\n * The default cache handler for the Pages and App Router uses the filesystem cache. This requires no configuration, however, you can customize the cache handler if you prefer.\n *\n * @see [Configuring Caching](https://nextjs.org/docs/app/building-your-application/deploying#configuring-caching) and the [API Reference](https://nextjs.org/docs/app/api-reference/next-config-js/incrementalCacheHandlerPath).\n */\n cacheHandler?: string | undefined\n\n /**\n * Configure the in-memory cache size in bytes. Defaults to 50 MB.\n * If `cacheMaxMemorySize: 0`, this disables in-memory caching entirely.\n *\n * @see [Configuring Caching](https://nextjs.org/docs/app/building-your-application/deploying#configuring-caching).\n */\n cacheMaxMemorySize?: number\n\n /**\n * By default, `Next` will serve each file in the `pages` folder under a pathname matching the filename.\n * To disable this behavior and prevent routing based set this to `true`.\n *\n * @default true\n * @see [Disabling file-system routing](https://nextjs.org/docs/advanced-features/custom-server#disabling-file-system-routing)\n */\n useFileSystemPublicRoutes?: boolean\n\n /**\n * @see [Configuring the build ID](https://nextjs.org/docs/app/api-reference/config/next-config-js/generateBuildId)\n */\n generateBuildId?: () => string | null | Promise<string | null>\n\n /** @see [Disabling ETag Configuration](https://nextjs.org/docs/app/api-reference/config/next-config-js/generateEtags) */\n generateEtags?: boolean\n\n /** @see [Including non-page files in the pages directory](https://nextjs.org/docs/app/api-reference/config/next-config-js/pageExtensions) */\n pageExtensions?: string[]\n\n /** @see [Compression documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/compress) */\n compress?: boolean\n\n /** @see [Disabling x-powered-by](https://nextjs.org/docs/app/api-reference/config/next-config-js/poweredByHeader) */\n poweredByHeader?: boolean\n\n /** @see [Using the Image Component](https://nextjs.org/docs/app/api-reference/next-config-js/images) */\n images?: ImageConfig\n\n /** Configure indicators in development environment */\n devIndicators?:\n | false\n | {\n /**\n * Position of the development tools indicator in the browser window.\n * @default \"bottom-left\"\n * */\n position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'\n }\n\n /**\n * Next.js exposes some options that give you some control over how the server will dispose or keep in memory built pages in development.\n *\n * @see [Configuring `onDemandEntries`](https://nextjs.org/docs/app/api-reference/config/next-config-js/onDemandEntries)\n */\n onDemandEntries?: {\n /** period (in ms) where the server will keep pages in the buffer */\n maxInactiveAge?: number\n /** number of pages that should be kept simultaneously without being disposed */\n pagesBufferLength?: number\n }\n\n /**\n * @deprecated built-in amp support will be removed in Next 16\n * @see [`next/amp`](https://nextjs.org/docs/api-reference/next/amp)\n */\n amp?: {\n canonicalBase?: string\n }\n\n /**\n * A unique identifier for a deployment that will be included in each request's query string or header.\n */\n deploymentId?: string\n\n /**\n * Deploy a Next.js application under a sub-path of a domain\n *\n * @see [Base path configuration](https://nextjs.org/docs/app/api-reference/config/next-config-js/basePath)\n */\n basePath?: string\n\n /** @see [Customizing sass options](https://nextjs.org/docs/app/api-reference/next-config-js/sassOptions) */\n sassOptions?: {\n implementation?: string\n [key: string]: any\n }\n\n /**\n * Enable browser source map generation during the production build\n *\n * @see [Source Maps](https://nextjs.org/docs/advanced-features/source-maps)\n */\n productionBrowserSourceMaps?: boolean\n\n /**\n * Enable {@link https://nextjs.org/docs/app/api-reference/config/next-config-js/reactCompiler React Compiler in Next.js}.\n * Configuration accepts partial config object of the Compiler.\n * If provided, the Compiler will be enabled.\n */\n reactCompiler?: boolean | ReactCompilerOptions\n\n /**\n * Enable react profiling in production\n *\n */\n reactProductionProfiling?: boolean\n\n /**\n * The Next.js runtime is Strict Mode-compliant.\n *\n * @see [React Strict Mode](https://nextjs.org/docs/app/api-reference/config/next-config-js/reactStrictMode)\n */\n reactStrictMode?: boolean | null\n\n /**\n * The maximum length of the headers that are emitted by React and added to\n * the response.\n *\n * @see [React Max Headers Length](https://nextjs.org/docs/app/api-reference/config/next-config-js/reactMaxHeadersLength)\n */\n reactMaxHeadersLength?: number\n\n /**\n * Add public (in browser) runtime configuration to your app\n *\n * @see [Runtime configuration](https://nextjs.org/docs/pages/api-reference/config/next-config-js/runtime-configuration\n */\n publicRuntimeConfig?: { [key: string]: any }\n\n /**\n * Add server runtime configuration to your app\n *\n * @see [Runtime configuration](https://nextjs.org/docs/pages/api-reference/config/next-config-js/runtime-configuration\n */\n serverRuntimeConfig?: { [key: string]: any }\n\n /**\n * Next.js enables HTTP Keep-Alive by default.\n * You may want to disable HTTP Keep-Alive for certain `fetch()` calls or globally.\n *\n * @see [Disabling HTTP Keep-Alive](https://nextjs.org/docs/app/api-reference/next-config-js/httpAgentOptions)\n */\n httpAgentOptions?: { keepAlive?: boolean }\n\n /**\n * Timeout after waiting to generate static pages in seconds\n *\n * @default 60\n */\n staticPageGenerationTimeout?: number\n\n /**\n * Add `\"crossorigin\"` attribute to generated `<script>` elements generated by `<Head />` or `<NextScript />` components\n *\n *\n * @see [`crossorigin` attribute documentation](https://developer.mozilla.org/docs/Web/HTML/Attributes/crossorigin)\n */\n crossOrigin?: 'anonymous' | 'use-credentials'\n\n /**\n * Optionally enable compiler transforms\n *\n * @see [Supported Compiler Options](https://nextjs.org/docs/advanced-features/compiler#supported-features)\n */\n compiler?: {\n reactRemoveProperties?:\n | boolean\n | {\n properties?: string[]\n }\n relay?: {\n src: string\n artifactDirectory?: string\n language?: 'typescript' | 'javascript' | 'flow'\n eagerEsModules?: boolean\n }\n removeConsole?:\n | boolean\n | {\n exclude?: string[]\n }\n styledComponents?: boolean | StyledComponentsConfig\n emotion?: boolean | EmotionConfig\n\n styledJsx?:\n | boolean\n | {\n useLightningcss?: boolean\n }\n\n /**\n * Replaces variables in your code during compile time. Each key will be\n * replaced with the respective values.\n */\n define?: Record<string, string>\n\n /**\n * Replaces server-only (Node.js and Edge) variables in your code during compile time.\n * Each key will be replaced with the respective values.\n */\n defineServer?: Record<string, string>\n\n /**\n * A hook function that executes after production build compilation finishes,\n * but before running post-compilation tasks such as type checking and\n * static page generation.\n */\n runAfterProductionCompile?: (metadata: {\n /**\n * The root directory of the project\n */\n projectDir: string\n /**\n * The build output directory (defaults to `.next`)\n */\n distDir: string\n }) => Promise<void>\n }\n\n /**\n * The type of build output.\n * - `undefined`: The default build output, `.next` directory, that works with production mode `next start` or a hosting provider like Vercel\n * - `'standalone'`: A standalone build output, `.next/standalone` directory, that only includes necessary files/dependencies. Useful for self-hosting in a Docker container.\n * - `'export'`: An exported build output, `out` directory, that only includes static HTML/CSS/JS. Useful for self-hosting without a Node.js server.\n * @see [Output File Tracing](https://nextjs.org/docs/advanced-features/output-file-tracing)\n * @see [Static HTML Export](https://nextjs.org/docs/advanced-features/static-html-export)\n */\n output?: 'standalone' | 'export'\n\n /**\n * Automatically transpile and bundle dependencies from local packages (like monorepos) or from external dependencies (`node_modules`). This replaces the\n * `next-transpile-modules` package.\n * @see [transpilePackages](https://nextjs.org/docs/advanced-features/compiler#module-transpilation)\n */\n transpilePackages?: string[]\n\n /**\n * Options for Turbopack. Temporarily also available as `experimental.turbo` for compatibility.\n */\n turbopack?: TurbopackOptions\n\n skipMiddlewareUrlNormalize?: boolean\n\n skipTrailingSlashRedirect?: boolean\n\n modularizeImports?: Record<\n string,\n {\n transform: string | Record<string, string>\n preventFullImport?: boolean\n skipDefaultConversion?: boolean\n }\n >\n\n /**\n * Logging configuration. Set to `false` to disable logging.\n */\n logging?: LoggingConfig | false\n\n /**\n * period (in seconds) where the server allow to serve stale cache\n */\n expireTime?: number\n\n /**\n * Enable experimental features. Note that all experimental features are subject to breaking changes in the future.\n */\n experimental?: ExperimentalConfig\n\n /**\n * Enables the bundling of node_modules packages (externals) for pages server-side bundles.\n * @see https://nextjs.org/docs/pages/api-reference/next-config-js/bundlePagesRouterDependencies\n */\n bundlePagesRouterDependencies?: boolean\n\n /**\n * A list of packages that should be treated as external in the server build.\n * @see https://nextjs.org/docs/app/api-reference/next-config-js/serverExternalPackages\n */\n serverExternalPackages?: string[]\n\n /**\n * This is the repo root usually and only files above this\n * directory are traced and included.\n */\n outputFileTracingRoot?: string\n\n /**\n * This allows manually excluding traced files if too many\n * are included incorrectly on a per-page basis.\n */\n outputFileTracingExcludes?: Record<string, string[]>\n\n /**\n * This allows manually including traced files if some\n * were not detected on a per-page basis.\n */\n outputFileTracingIncludes?: Record<string, string[]>\n\n watchOptions?: {\n pollIntervalMs?: number\n }\n\n /**\n * User Agent of bots that can handle streaming metadata.\n * Besides the default behavior, Next.js act differently on serving metadata to bots based on their capability.\n *\n * @default\n * /Mediapartners-Google|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview/i\n */\n htmlLimitedBots?: RegExp\n\n /**\n * @internal\n */\n configFile?: string | undefined\n\n /**\n * @internal\n */\n configOrigin?: string | undefined\n\n /**\n * @internal\n */\n _originalRedirects?: any\n\n /**\n * @internal\n */\n _originalRewrites?: any\n}\n\nexport const defaultConfig = Object.freeze({\n env: {},\n webpack: null,\n eslint: {\n ignoreDuringBuilds: false,\n },\n typescript: {\n ignoreBuildErrors: false,\n tsconfigPath: undefined,\n },\n typedRoutes: false,\n distDir: '.next',\n cleanDistDir: true,\n assetPrefix: '',\n cacheHandler: process.env.NEXT_CACHE_HANDLER_PATH,\n // default to 50MB limit\n cacheMaxMemorySize: 50 * 1024 * 1024,\n configOrigin: 'default',\n useFileSystemPublicRoutes: true,\n generateBuildId: () => null,\n generateEtags: true,\n pageExtensions: ['tsx', 'ts', 'jsx', 'js'],\n poweredByHeader: true,\n compress: true,\n images: imageConfigDefault,\n devIndicators: {\n position: 'bottom-left',\n },\n onDemandEntries: {\n maxInactiveAge: 60 * 1000,\n pagesBufferLength: 5,\n },\n amp: {\n canonicalBase: '',\n },\n basePath: '',\n sassOptions: {},\n trailingSlash: false,\n i18n: null,\n productionBrowserSourceMaps: false,\n excludeDefaultMomentLocales: true,\n serverRuntimeConfig: {},\n publicRuntimeConfig: {},\n reactCompiler: undefined,\n reactProductionProfiling: false,\n reactStrictMode: null,\n reactMaxHeadersLength: 6000,\n httpAgentOptions: {\n keepAlive: true,\n },\n logging: {},\n compiler: {},\n expireTime: process.env.NEXT_PRIVATE_CDN_CONSUMED_SWR_CACHE_CONTROL\n ? undefined\n : 31536000, // one year\n staticPageGenerationTimeout: 60,\n output: !!process.env.NEXT_PRIVATE_STANDALONE ? 'standalone' : undefined,\n modularizeImports: undefined,\n outputFileTracingRoot: process.env.NEXT_PRIVATE_OUTPUT_TRACE_ROOT || '',\n allowedDevOrigins: undefined,\n experimental: {\n adapterPath: process.env.NEXT_ADAPTER_PATH || undefined,\n useSkewCookie: false,\n cacheLife: {\n default: {\n stale: undefined, // defaults to staleTimes.static\n revalidate: 60 * 15, // 15 minutes\n expire: INFINITE_CACHE,\n },\n seconds: {\n stale: 30, // 30 seconds\n revalidate: 1, // 1 second\n expire: 60, // 1 minute\n },\n minutes: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60, // 1 minute\n expire: 60 * 60, // 1 hour\n },\n hours: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60 * 60, // 1 hour\n expire: 60 * 60 * 24, // 1 day\n },\n days: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60 * 60 * 24, // 1 day\n expire: 60 * 60 * 24 * 7, // 1 week\n },\n weeks: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60 * 60 * 24 * 7, // 1 week\n expire: 60 * 60 * 24 * 30, // 1 month\n },\n max: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60 * 60 * 24 * 30, // 1 month\n expire: INFINITE_CACHE, // Unbounded.\n },\n },\n cacheHandlers: {\n default: process.env.NEXT_DEFAULT_CACHE_HANDLER_PATH,\n remote: process.env.NEXT_REMOTE_CACHE_HANDLER_PATH,\n static: process.env.NEXT_STATIC_CACHE_HANDLER_PATH,\n },\n cssChunking: true,\n multiZoneDraftMode: false,\n appNavFailHandling: false,\n prerenderEarlyExit: true,\n serverMinification: true,\n // Will default to cacheComponents value.\n enablePrerenderSourceMaps: undefined,\n serverSourceMaps: false,\n linkNoTouchStart: false,\n caseSensitiveRoutes: false,\n clientSegmentCache: false,\n rdcForNavigations: false,\n clientParamParsing: false,\n clientParamParsingOrigins: undefined,\n dynamicOnHover: false,\n preloadEntriesOnStart: true,\n clientRouterFilter: true,\n clientRouterFilterRedirects: false,\n fetchCacheKeyPrefix: '',\n middlewarePrefetch: 'flexible',\n optimisticClientCache: true,\n manualClientBasePath: false,\n cpus: Math.max(\n 1,\n (Number(process.env.CIRCLE_NODE_TOTAL) ||\n (os.cpus() || { length: 1 }).length) - 1\n ),\n memoryBasedWorkersCount: false,\n imgOptConcurrency: null,\n imgOptTimeoutInSeconds: 7,\n imgOptMaxInputPixels: 268_402_689, // https://sharp.pixelplumbing.com/api-constructor#:~:text=%5Boptions.limitInputPixels%5D\n imgOptSequentialRead: null,\n imgOptSkipMetadata: null,\n isrFlushToDisk: true,\n workerThreads: false,\n proxyTimeout: undefined,\n optimizeCss: false,\n nextScriptWorkers: false,\n scrollRestoration: false,\n externalDir: false,\n disableOptimizedLoading: false,\n gzipSize: true,\n craCompat: false,\n esmExternals: true,\n fullySpecified: false,\n swcTraceProfiling: false,\n forceSwcTransforms: false,\n swcPlugins: undefined,\n largePageDataBytes: 128 * 1000, // 128KB by default\n disablePostcssPresetEnv: undefined,\n amp: undefined,\n urlImports: undefined,\n typedEnv: false,\n clientTraceMetadata: undefined,\n parallelServerCompiles: false,\n parallelServerBuildTraces: false,\n ppr: false,\n authInterrupts: false,\n webpackBuildWorker: undefined,\n webpackMemoryOptimizations: false,\n optimizeServerReact: true,\n viewTransition: false,\n routerBFCache: false,\n removeUncaughtErrorAndRejectionListeners: false,\n validateRSCRequestHeaders: !!(\n process.env.__NEXT_TEST_MODE || !isStableBuild()\n ),\n staleTimes: {\n dynamic: 0,\n static: 300,\n },\n allowDevelopmentBuild: undefined,\n reactDebugChannel: false,\n staticGenerationRetryCount: undefined,\n serverComponentsHmrCache: true,\n staticGenerationMaxConcurrency: 8,\n staticGenerationMinPagesPerWorker: 25,\n cacheComponents: false,\n inlineCss: false,\n useCache: undefined,\n slowModuleDetection: undefined,\n globalNotFound: false,\n browserDebugInfoInTerminal: false,\n isolatedDevBuild:\n process.env.__NEXT_EXPERIMENTAL_ISOLATED_DEV_BUILD === 'true',\n mcpServer: !!process.env.__NEXT_EXPERIMENTAL_MCP_SERVER,\n },\n htmlLimitedBots: undefined,\n bundlePagesRouterDependencies: false,\n} satisfies NextConfig)\n\nexport async function normalizeConfig(phase: string, config: any) {\n if (typeof config === 'function') {\n config = config(phase, { defaultConfig })\n }\n // Support `new Promise` and `async () =>` as return values of the config export\n return await config\n}\n"],"names":["defaultConfig","normalizeConfig","Object","freeze","env","webpack","eslint","ignoreDuringBuilds","typescript","ignoreBuildErrors","tsconfigPath","undefined","typedRoutes","distDir","cleanDistDir","assetPrefix","cacheHandler","process","NEXT_CACHE_HANDLER_PATH","cacheMaxMemorySize","configOrigin","useFileSystemPublicRoutes","generateBuildId","generateEtags","pageExtensions","poweredByHeader","compress","images","imageConfigDefault","devIndicators","position","onDemandEntries","maxInactiveAge","pagesBufferLength","amp","canonicalBase","basePath","sassOptions","trailingSlash","i18n","productionBrowserSourceMaps","excludeDefaultMomentLocales","serverRuntimeConfig","publicRuntimeConfig","reactCompiler","reactProductionProfiling","reactStrictMode","reactMaxHeadersLength","httpAgentOptions","keepAlive","logging","compiler","expireTime","NEXT_PRIVATE_CDN_CONSUMED_SWR_CACHE_CONTROL","staticPageGenerationTimeout","output","NEXT_PRIVATE_STANDALONE","modularizeImports","outputFileTracingRoot","NEXT_PRIVATE_OUTPUT_TRACE_ROOT","allowedDevOrigins","experimental","adapterPath","NEXT_ADAPTER_PATH","useSkewCookie","cacheLife","default","stale","revalidate","expire","INFINITE_CACHE","seconds","minutes","hours","days","weeks","max","cacheHandlers","NEXT_DEFAULT_CACHE_HANDLER_PATH","remote","NEXT_REMOTE_CACHE_HANDLER_PATH","static","NEXT_STATIC_CACHE_HANDLER_PATH","cssChunking","multiZoneDraftMode","appNavFailHandling","prerenderEarlyExit","serverMinification","enablePrerenderSourceMaps","serverSourceMaps","linkNoTouchStart","caseSensitiveRoutes","clientSegmentCache","rdcForNavigations","clientParamParsing","clientParamParsingOrigins","dynamicOnHover","preloadEntriesOnStart","clientRouterFilter","clientRouterFilterRedirects","fetchCacheKeyPrefix","middlewarePrefetch","optimisticClientCache","manualClientBasePath","cpus","Math","Number","CIRCLE_NODE_TOTAL","os","length","memoryBasedWorkersCount","imgOptConcurrency","imgOptTimeoutInSeconds","imgOptMaxInputPixels","imgOptSequentialRead","imgOptSkipMetadata","isrFlushToDisk","workerThreads","proxyTimeout","optimizeCss","nextScriptWorkers","scrollRestoration","externalDir","disableOptimizedLoading","gzipSize","craCompat","esmExternals","fullySpecified","swcTraceProfiling","forceSwcTransforms","swcPlugins","largePageDataBytes","disablePostcssPresetEnv","urlImports","typedEnv","clientTraceMetadata","parallelServerCompiles","parallelServerBuildTraces","ppr","authInterrupts","webpackBuildWorker","webpackMemoryOptimizations","optimizeServerReact","viewTransition","routerBFCache","removeUncaughtErrorAndRejectionListeners","validateRSCRequestHeaders","__NEXT_TEST_MODE","isStableBuild","staleTimes","dynamic","allowDevelopmentBuild","reactDebugChannel","staticGenerationRetryCount","serverComponentsHmrCache","staticGenerationMaxConcurrency","staticGenerationMinPagesPerWorker","cacheComponents","inlineCss","useCache","slowModuleDetection","globalNotFound","browserDebugInfoInTerminal","isolatedDevBuild","__NEXT_EXPERIMENTAL_ISOLATED_DEV_BUILD","mcpServer","__NEXT_EXPERIMENTAL_MCP_SERVER","htmlLimitedBots","bundlePagesRouterDependencies","phase","config"],"mappings":"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","ignoreList":[0]}
|
1
|
+
{"version":3,"sources":["../../src/server/config-shared.ts"],"sourcesContent":["import os from 'os'\nimport type { webpack } from 'next/dist/compiled/webpack/webpack'\nimport type { Header, Redirect, Rewrite } from '../lib/load-custom-routes'\nimport { imageConfigDefault } from '../shared/lib/image-config'\nimport type {\n ImageConfig,\n ImageConfigComplete,\n} from '../shared/lib/image-config'\nimport type { SubresourceIntegrityAlgorithm } from '../build/webpack/plugins/subresource-integrity-plugin'\nimport type { WEB_VITALS } from '../shared/lib/utils'\nimport type { NextParsedUrlQuery } from './request-meta'\nimport type { SizeLimit } from '../types'\nimport type { SupportedTestRunners } from '../cli/next-test'\nimport type { ExperimentalPPRConfig } from './lib/experimental/ppr'\nimport { INFINITE_CACHE } from '../lib/constants'\nimport { isStableBuild } from '../shared/lib/canary-only'\nimport type { FallbackRouteParam } from '../build/static-paths/types'\n\nexport type NextConfigComplete = Required<Omit<NextConfig, 'configFile'>> & {\n images: Required<ImageConfigComplete>\n typescript: TypeScriptConfig\n configFile: string | undefined\n configFileName: string\n // override NextConfigComplete.experimental.htmlLimitedBots to string\n // because it's not defined in NextConfigComplete.experimental\n htmlLimitedBots: string | undefined\n experimental: ExperimentalConfig\n}\n\nexport type I18NDomains = readonly DomainLocale[]\n\nexport interface I18NConfig {\n defaultLocale: string\n domains?: I18NDomains\n localeDetection?: false\n locales: readonly string[]\n}\n\nexport interface DomainLocale {\n defaultLocale: string\n domain: string\n http?: true\n locales?: readonly string[]\n}\n\nexport interface ESLintConfig {\n /** Only run ESLint on these directories with `next lint` and `next build`. */\n dirs?: string[]\n /** Do not run ESLint during production builds (`next build`). */\n ignoreDuringBuilds?: boolean\n}\n\nexport interface TypeScriptConfig {\n /** Do not run TypeScript during production builds (`next build`). */\n ignoreBuildErrors?: boolean\n /** Relative path to a custom tsconfig file */\n tsconfigPath?: string\n}\n\nexport interface EmotionConfig {\n sourceMap?: boolean\n autoLabel?: 'dev-only' | 'always' | 'never'\n labelFormat?: string\n importMap?: {\n [importName: string]: {\n [exportName: string]: {\n canonicalImport?: [string, string]\n styledBaseImport?: [string, string]\n }\n }\n }\n}\n\nexport interface StyledComponentsConfig {\n /**\n * Enabled by default in development, disabled in production to reduce file size,\n * setting this will override the default for all environments.\n */\n displayName?: boolean\n topLevelImportPaths?: string[]\n ssr?: boolean\n fileName?: boolean\n meaninglessFileNames?: string[]\n minify?: boolean\n transpileTemplateLiterals?: boolean\n namespace?: string\n pure?: boolean\n cssProp?: boolean\n}\n\nexport type JSONValue =\n | string\n | number\n | boolean\n | JSONValue[]\n | { [k: string]: JSONValue }\n\n// At the moment, Turbopack options must be JSON-serializable, so restrict values.\nexport type TurbopackLoaderOptions = Record<string, JSONValue>\n\nexport type TurbopackLoaderItem =\n | string\n | {\n loader: string\n options?: TurbopackLoaderOptions\n }\n\nexport type TurbopackLoaderBuiltinCondition =\n | 'browser'\n | 'foreign'\n | 'development'\n | 'production'\n | 'node'\n | 'edge-light'\n\nexport type TurbopackRuleCondition =\n | { all: TurbopackRuleCondition[] }\n | { any: TurbopackRuleCondition[] }\n | { not: TurbopackRuleCondition }\n | TurbopackLoaderBuiltinCondition\n | {\n path?: string | RegExp\n content?: RegExp\n }\n\nexport type TurbopackRuleConfigItem = {\n loaders: TurbopackLoaderItem[]\n as?: string\n condition?: TurbopackRuleCondition\n}\n\n/**\n * This can be an object representing a single configuration, or a list of\n * loaders and/or rule configuration objects.\n *\n * - A list of loader path strings or objects is the \"shorthand\" syntax.\n * - A list of rule configuration objects can be useful when each configuration\n * object has different `condition` fields, but still match the same top-level\n * path glob.\n */\nexport type TurbopackRuleConfigCollection =\n | TurbopackRuleConfigItem\n | (TurbopackLoaderItem | TurbopackRuleConfigItem)[]\n\nexport interface TurbopackOptions {\n /**\n * (`next --turbopack` only) A mapping of aliased imports to modules to load in their place.\n *\n * @see [Resolve Alias](https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#resolving-aliases)\n */\n resolveAlias?: Record<\n string,\n string | string[] | Record<string, string | string[]>\n >\n\n /**\n * (`next --turbopack` only) A list of extensions to resolve when importing files.\n *\n * @see [Resolve Extensions](https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#resolving-custom-extensions)\n */\n resolveExtensions?: string[]\n\n /**\n * (`next --turbopack` only) A list of webpack loaders to apply when running with Turbopack.\n *\n * @see [Turbopack Loaders](https://nextjs.org/docs/app/api-reference/config/next-config-js/turbopack#configuring-webpack-loaders)\n */\n rules?: Record<string, TurbopackRuleConfigCollection>\n\n /**\n * This is the repo root usually and only files above this\n * directory can be resolved by turbopack.\n */\n root?: string\n\n /**\n * Enables generation of debug IDs in JavaScript bundles and source maps.\n * These debug IDs help with debugging and error tracking by providing stable identifiers.\n *\n * @see https://github.com/tc39/ecma426/blob/main/proposals/debug-id.md TC39 Debug ID Proposal\n */\n debugIds?: boolean\n}\n\nexport interface WebpackConfigContext {\n /** Next.js root directory */\n dir: string\n /** Indicates if the compilation will be done in development */\n dev: boolean\n /** It's `true` for server-side compilation, and `false` for client-side compilation */\n isServer: boolean\n /** The build id, used as a unique identifier between builds */\n buildId: string\n /** The next.config.js merged with default values */\n config: NextConfigComplete\n /** Default loaders used internally by Next.js */\n defaultLoaders: {\n /** Default babel-loader configuration */\n babel: any\n }\n /** Number of total Next.js pages */\n totalPages: number\n /** The webpack configuration */\n webpack: any\n /** The current server runtime */\n nextRuntime?: 'nodejs' | 'edge'\n}\n\nexport interface NextJsWebpackConfig {\n (\n /** Existing Webpack config */\n config: any,\n context: WebpackConfigContext\n ): any\n}\n\n/**\n * Set of options for React Compiler that Next.js currently supports.\n *\n * These options may be changed in breaking ways at any time without notice\n * while support for React Compiler is experimental.\n *\n * @see https://react.dev/reference/react-compiler/configuration\n */\nexport interface ReactCompilerOptions {\n /**\n * Controls the strategy for determining which functions the React Compiler\n * will optimize.\n *\n * The default is `'infer'`, which uses intelligent heuristics to identify\n * React components and hooks.\n *\n * When using `infer`, Next.js applies its own heuristics before calling\n * `react-compiler`. This improves compilation performance by avoiding extra\n * invocations of Babel and reducing redundant parsing of code.\n *\n * @see https://react.dev/reference/react-compiler/compilationMode\n */\n compilationMode?: 'infer' | 'annotation' | 'all'\n /**\n * Controls how the React Compiler handles errors during compilation.\n *\n * The default is `'none'`, which skips components which cannot be compiled.\n *\n * @see https://react.dev/reference/react-compiler/panicThreshold\n */\n panicThreshold?: 'none' | 'critical_errors' | 'all_errors'\n}\n\nexport interface IncomingRequestLoggingConfig {\n /**\n * A regular expression array to match incoming requests that should not be logged.\n * You can specify multiple patterns to match incoming requests that should not be logged.\n */\n ignore?: RegExp[]\n}\n\nexport interface LoggingConfig {\n fetches?: {\n fullUrl?: boolean\n /**\n * If true, fetch requests that are restored from the HMR cache are logged\n * during an HMR refresh request, i.e. when editing a server component.\n */\n hmrRefreshes?: boolean\n }\n\n /**\n * If set to false, incoming request logging is disabled.\n * You can specify a pattern to match incoming requests that should not be logged.\n */\n incomingRequests?: boolean | IncomingRequestLoggingConfig\n}\n\nexport interface ExperimentalConfig {\n adapterPath?: string\n useSkewCookie?: boolean\n cacheHandlers?: {\n default?: string\n remote?: string\n static?: string\n [handlerName: string]: string | undefined\n }\n multiZoneDraftMode?: boolean\n appNavFailHandling?: boolean\n prerenderEarlyExit?: boolean\n linkNoTouchStart?: boolean\n caseSensitiveRoutes?: boolean\n clientSegmentCache?: boolean | 'client-only'\n\n /**\n * Enables RDC for Dynamic Navigations. This is only supported for App Router\n * when Partial Prerendering is also enabled. This is enabled by default when\n * Partial Prerendering is enabled.\n */\n rdcForNavigations?: boolean\n clientParamParsing?: boolean\n\n /**\n * The origins that are allowed to write the rewritten headers when\n * performing a non-relative rewrite. When undefined, no non-relative\n * rewrites will get the rewrite headers.\n */\n clientParamParsingOrigins?: string[]\n dynamicOnHover?: boolean\n preloadEntriesOnStart?: boolean\n clientRouterFilter?: boolean\n clientRouterFilterRedirects?: boolean\n /**\n * This config can be used to override the cache behavior for the client router.\n * These values indicate the time, in seconds, that the cache should be considered\n * reusable. When the `prefetch` Link prop is left unspecified, this will use the `dynamic` value.\n * When the `prefetch` Link prop is set to `true`, this will use the `static` value.\n */\n staleTimes?: {\n dynamic?: number\n static?: number\n }\n cacheLife?: {\n [profile: string]: {\n // How long the client can cache a value without checking with the server.\n stale?: number\n // How frequently you want the cache to refresh on the server.\n // Stale values may be served while revalidating.\n revalidate?: number\n // In the worst case scenario, where you haven't had traffic in a while,\n // how stale can a value be until you prefer deopting to dynamic.\n // Must be longer than revalidate.\n expire?: number\n }\n }\n // decimal for percent for possible false positives\n // e.g. 0.01 for 10% potential false matches lower\n // percent increases size of the filter\n clientRouterFilterAllowedRate?: number\n externalMiddlewareRewritesResolve?: boolean\n extensionAlias?: Record<string, any>\n allowedRevalidateHeaderKeys?: string[]\n fetchCacheKeyPrefix?: string\n imgOptConcurrency?: number | null\n imgOptTimeoutInSeconds?: number\n imgOptMaxInputPixels?: number\n imgOptSequentialRead?: boolean | null\n imgOptSkipMetadata?: boolean | null\n optimisticClientCache?: boolean\n /**\n * @deprecated use config.expireTime instead\n */\n expireTime?: number\n middlewarePrefetch?: 'strict' | 'flexible'\n manualClientBasePath?: boolean\n /**\n * CSS Chunking strategy. Defaults to `true` (\"loose\" mode), which guesses dependencies\n * between CSS files to keep ordering of them.\n * An alternative is 'strict', which will try to keep correct ordering as\n * much as possible, even when this leads to many requests.\n */\n cssChunking?: boolean | 'strict'\n disablePostcssPresetEnv?: boolean\n cpus?: number\n memoryBasedWorkersCount?: boolean\n proxyTimeout?: number\n isrFlushToDisk?: boolean\n workerThreads?: boolean\n // optimizeCss can be boolean or critters' option object\n // Use Record<string, unknown> as critters doesn't export its Option type\n // https://github.com/GoogleChromeLabs/critters/blob/a590c05f9197b656d2aeaae9369df2483c26b072/packages/critters/src/index.d.ts\n optimizeCss?: boolean | Record<string, unknown>\n nextScriptWorkers?: boolean\n scrollRestoration?: boolean\n externalDir?: boolean\n /** @deprecated built-in amp support will be removed in Next 16 */\n amp?: {\n optimizer?: any\n validator?: string\n skipValidation?: boolean\n }\n disableOptimizedLoading?: boolean\n\n /** @deprecated A no-op as of Next 16, size metrics were removed from the build output. */\n gzipSize?: boolean\n craCompat?: boolean\n esmExternals?: boolean | 'loose'\n fullySpecified?: boolean\n urlImports?: NonNullable<webpack.Configuration['experiments']>['buildHttp']\n swcTraceProfiling?: boolean\n forceSwcTransforms?: boolean\n\n swcPlugins?: Array<[string, Record<string, unknown>]>\n largePageDataBytes?: number\n /**\n * If set to `false`, webpack won't fall back to polyfill Node.js modules in the browser\n * Full list of old polyfills is accessible here:\n * [webpack/webpack#ModuleNotoundError.js#L13-L42](https://github.com/webpack/webpack/blob/2a0536cf510768111a3a6dceeb14cb79b9f59273/lib/ModuleNotFoundError.js#L13-L42)\n */\n fallbackNodePolyfills?: false\n sri?: {\n algorithm?: SubresourceIntegrityAlgorithm\n }\n\n webVitalsAttribution?: Array<(typeof WEB_VITALS)[number]>\n\n /**\n * Automatically apply the \"modularizeImports\" optimization to imports of the specified packages.\n */\n optimizePackageImports?: string[]\n\n /**\n * Optimize React APIs for server builds.\n */\n optimizeServerReact?: boolean\n\n /**\n * A target memory limit for turbo, in bytes.\n */\n turbopackMemoryLimit?: number\n\n /**\n * Enable minification. Defaults to true in build mode and false in dev mode.\n */\n turbopackMinify?: boolean\n\n /**\n * Enable support for `with {type: \"module\"}` for ESM imports.\n */\n turbopackImportTypeBytes?: boolean\n\n /**\n * Enable scope hoisting. Defaults to true in build mode. Always disabled in development mode.\n */\n turbopackScopeHoisting?: boolean\n\n /**\n * Enable persistent caching for the turbopack dev server.\n */\n turbopackPersistentCachingForDev?: boolean\n\n /**\n * Enable persistent caching for the turbopack build.\n */\n turbopackPersistentCachingForBuild?: boolean\n\n /**\n * Enable source maps. Defaults to true.\n */\n turbopackSourceMaps?: boolean\n\n /**\n * Enable tree shaking for the turbopack dev server and build.\n */\n turbopackTreeShaking?: boolean\n\n /**\n * Enable removing unused exports for turbopack dev server and build.\n */\n turbopackRemoveUnusedExports?: boolean\n\n /**\n * Use the system-provided CA roots instead of bundled CA roots for external HTTPS requests\n * made by Turbopack. Currently this is only used for fetching data from Google Fonts.\n *\n * This may be useful in cases where you or an employer are MITMing traffic.\n *\n * This option is experimental because:\n * - This may cause small performance problems, as it uses [`rustls-native-certs`](\n * https://github.com/rustls/rustls-native-certs).\n * - In the future, this may become the default, and this option may be eliminated, once\n * <https://github.com/seanmonstar/reqwest/issues/2159> is resolved.\n *\n * Users who need to configure this behavior system-wide can override the project\n * configuration using the `NEXT_TURBOPACK_EXPERIMENTAL_USE_SYSTEM_TLS_CERTS=1` environment\n * variable.\n *\n * This option is ignored on Windows on ARM, where the native TLS implementation is always\n * used.\n *\n * If you need to set a proxy, Turbopack [respects the common `HTTP_PROXY` and `HTTPS_PROXY`\n * environment variable convention](https://docs.rs/reqwest/latest/reqwest/#proxies). HTTP\n * proxies are supported, SOCKS proxies are not currently supported.\n */\n turbopackUseSystemTlsCerts?: boolean\n\n /**\n * Set this to `false` to disable the automatic configuration of the babel loader when a Babel\n * configuration file is present. This option is enabled by default.\n *\n * If this is set to `false`, but `reactCompiler` is `true`, the built-in Babel will\n * still be configured, but any Babel configuration files on disk will be ignored. If you wish to\n * use React Compiler with a different manually-configured `babel-loader`, you should disable both\n * this and `reactCompiler`.\n */\n turbopackUseBuiltinBabel?: boolean\n\n /**\n * Set this to `false` to disable the automatic configuration of the sass loader. The sass loader\n * configuration is enabled by default.\n */\n turbopackUseBuiltinSass?: boolean\n\n /**\n * For use with `@next/mdx`. Compile MDX files using the new Rust compiler.\n * @see https://nextjs.org/docs/app/api-reference/next-config-js/mdxRs\n */\n mdxRs?:\n | boolean\n | {\n development?: boolean\n jsx?: boolean\n jsxRuntime?: string\n jsxImportSource?: string\n providerImportSource?: string\n mdxType?: 'gfm' | 'commonmark'\n }\n\n /**\n * Enable type checking for Link and Router.push, etc.\n * @deprecated Use `typedRoutes` instead — this feature is now stable.\n * @see https://nextjs.org/docs/app/api-reference/config/typescript#statically-typed-links\n */\n typedRoutes?: boolean\n\n /**\n * Enable type-checking and autocompletion for environment variables.\n *\n * @default false\n */\n typedEnv?: boolean\n\n /**\n * Runs the compilations for server and edge in parallel instead of in serial.\n * This will make builds faster if there is enough server and edge functions\n * in the application at the cost of more memory.\n *\n * NOTE: This option is only valid when the build process can use workers. See\n * the documentation for `webpackBuildWorker` for more details.\n */\n parallelServerCompiles?: boolean\n\n /**\n * Runs the logic to collect build traces for the server routes in parallel\n * with other work during the compilation. This will increase the speed of\n * the build at the cost of more memory. This option may incur some additional\n * work compared to if the option was disabled since the work is started\n * before data from the client compilation is available to potentially reduce\n * the amount of code that needs to be traced. Despite that, this may still\n * result in faster builds for some applications.\n *\n * Valid values are:\n * - `true`: Collect the server build traces in parallel.\n * - `false`: Do not collect the server build traces in parallel.\n * - `undefined`: Collect server build traces in parallel only in the `experimental-compile` mode.\n *\n * NOTE: This option is only valid when the build process can use workers. See\n * the documentation for `webpackBuildWorker` for more details.\n */\n parallelServerBuildTraces?: boolean\n\n /**\n * Run the Webpack build in a separate process to optimize memory usage during build.\n * Valid values are:\n * - `false`: Disable the Webpack build worker\n * - `true`: Enable the Webpack build worker\n * - `undefined`: Enable the Webpack build worker only if the webpack config is not customized\n */\n webpackBuildWorker?: boolean\n\n /**\n * Enables optimizations to reduce memory usage in Webpack. This reduces the max size of the heap\n * but may increase compile times slightly.\n * Valid values are:\n * - `false`: Disable Webpack memory optimizations (default).\n * - `true`: Enables Webpack memory optimizations.\n */\n webpackMemoryOptimizations?: boolean\n\n /**\n * The array of the meta tags to the client injected by tracing propagation data.\n */\n clientTraceMetadata?: string[]\n\n /**\n * Enables experimental Partial Prerendering feature of Next.js.\n * Using this feature will enable the `react@experimental` for the `app` directory.\n */\n ppr?: ExperimentalPPRConfig\n\n /**\n * Enables experimental taint APIs in React.\n * Using this feature will enable the `react@experimental` for the `app` directory.\n */\n taint?: boolean\n\n /**\n * Enables the Back/Forward Cache for the router.\n */\n routerBFCache?: boolean\n\n /**\n * Uninstalls all \"unhandledRejection\" and \"uncaughtException\" listeners from\n * the global process so that we can override the behavior, which in some\n * runtimes is to exit the process.\n *\n * This is experimental until we've considered the impact in various\n * deployment environments.\n */\n removeUncaughtErrorAndRejectionListeners?: boolean\n\n /**\n * During an RSC request, validates that the request headers match the\n * cache-busting search parameter sent by the client.\n */\n validateRSCRequestHeaders?: boolean\n\n serverActions?: {\n /**\n * Allows adjusting body parser size limit for server actions.\n */\n bodySizeLimit?: SizeLimit\n\n /**\n * Allowed origins that can bypass Server Action's CSRF check. This is helpful\n * when you have reverse proxy in front of your app.\n * @example\n * [\"my-app.com\", \"*.my-app.com\"]\n */\n allowedOrigins?: string[]\n }\n\n /**\n * enables the minification of server code.\n */\n serverMinification?: boolean\n\n /**\n * Enables source maps while generating static pages.\n * Helps with errors during the prerender phase in `next build`.\n */\n enablePrerenderSourceMaps?: boolean\n\n /**\n * Enables source maps generation for the server production bundle.\n */\n serverSourceMaps?: boolean\n\n /**\n * @internal Used by the Next.js internals only.\n */\n trustHostHeader?: boolean\n /**\n * @internal Used by the Next.js internals only.\n */\n isExperimentalCompile?: boolean\n\n useWasmBinary?: boolean\n\n /**\n * Use lightningcss instead of postcss-loader\n */\n useLightningcss?: boolean\n\n /**\n * Enables view transitions by using the {@link https://github.com/facebook/react/pull/31975 unstable_ViewTransition} Component.\n */\n viewTransition?: boolean\n\n /**\n * Enables `fetch` requests to be proxied to the experimental test proxy server\n */\n testProxy?: boolean\n\n /**\n * Set a default test runner to be used by `next experimental-test`.\n */\n defaultTestRunner?: SupportedTestRunners\n /**\n * Allow NODE_ENV=development even for `next build`.\n */\n allowDevelopmentBuild?: true\n /**\n * @deprecated use `config.bundlePagesRouterDependencies` instead\n *\n */\n bundlePagesExternals?: boolean\n /**\n * @deprecated use `config.serverExternalPackages` instead\n *\n */\n serverComponentsExternalPackages?: string[]\n\n /**\n * When enabled, in dev mode, Next.js will send React's debug info through the\n * WebSocket connection, instead of including it in the main RSC payload.\n */\n reactDebugChannel?: boolean\n\n /**\n * The number of times to retry static generation (per page) before giving up.\n */\n staticGenerationRetryCount?: number\n\n /**\n * The amount of pages to export per worker during static generation.\n */\n staticGenerationMaxConcurrency?: number\n\n /**\n * The minimum number of pages to be chunked into each export worker.\n */\n staticGenerationMinPagesPerWorker?: number\n\n /**\n * Allows previously fetched data to be re-used when editing server components.\n */\n serverComponentsHmrCache?: boolean\n\n /**\n * When enabled, will cause IO in App Router to be excluded from prerenders,\n * unless explicitly cached. This also enables the experimental Partial\n * Prerendering feature of Next.js, and it enables `react@experimental` being\n * used for the `app` directory.\n */\n cacheComponents?: boolean\n\n /**\n * @deprecated Use `experimental.cacheComponents` instead.\n */\n dynamicIO?: boolean\n\n /**\n * Render <style> tags inline in the HTML for imported CSS assets.\n * Supports app-router in production mode only.\n */\n inlineCss?: boolean\n\n // TODO: Remove this config when the API is stable.\n /**\n * This config allows you to enable the experimental navigation API `forbidden` and `unauthorized`.\n */\n authInterrupts?: boolean\n\n /**\n * Enables the use of the `\"use cache\"` directive.\n */\n useCache?: boolean\n\n /**\n * Enables detection and reporting of slow modules during development builds.\n * Enabling this may impact build performance to ensure accurate measurements.\n */\n slowModuleDetection?: {\n /**\n * The time threshold in milliseconds for identifying slow modules.\n * Modules taking longer than this build time threshold will be reported.\n */\n buildTimeThresholdMs: number\n }\n\n /**\n * Enables using the global-not-found.js file in the app directory\n *\n */\n globalNotFound?: boolean\n\n /**\n * Enable debug information to be forwarded from browser to dev server stdout/stderr\n */\n browserDebugInfoInTerminal?:\n | boolean\n | {\n /**\n * Option to limit stringification at a specific nesting depth when logging circular objects.\n * @default 5\n */\n depthLimit?: number\n\n /**\n * Maximum number of properties/elements to stringify when logging objects/arrays with circular references.\n * @default 100\n */\n edgeLimit?: number\n /**\n * Whether to include source location information in debug output when available\n */\n showSourceLocation?: boolean\n }\n\n /**\n * Enable accessing root params via the `next/root-params` module.\n */\n rootParams?: boolean\n\n /**\n * Use an isolated directory for development builds to prevent conflicts\n * with production builds. Development builds will use `{distDir}/dev`\n * instead of `{distDir}`.\n */\n isolatedDevBuild?: boolean\n\n /**\n * Enable the Model Context Protocol (MCP) server for AI-assisted development.\n * When enabled, Next.js will expose an MCP server at `/_next/mcp` that provides\n * code intelligence and project context to AI assistants.\n *\n * @default false\n */\n mcpServer?: boolean\n\n /**\n * The module ID strategy to use for Turbopack.\n * If not set, the default is `'named'` for development and `'deterministic'`\n * for production.\n */\n turbopackModuleIds?: 'named' | 'deterministic'\n}\n\nexport type ExportPathMap = {\n [path: string]: {\n page: string\n query?: NextParsedUrlQuery\n\n /**\n * When true, this indicates that this is a pages router page that should\n * be rendered as a fallback.\n *\n * @internal\n */\n _pagesFallback?: boolean\n\n /**\n * The locale that this page should be rendered in.\n *\n * @internal\n */\n _locale?: string\n\n /**\n * The path that was used to generate the page.\n *\n * @internal\n */\n _ssgPath?: string\n\n /**\n * The parameters that are currently unknown.\n *\n * @internal\n */\n _fallbackRouteParams?: readonly FallbackRouteParam[]\n\n /**\n * @internal\n */\n _isAppDir?: boolean\n\n /**\n * @internal\n */\n _isDynamicError?: boolean\n\n /**\n * @internal\n */\n _isRoutePPREnabled?: boolean\n\n /**\n * When true, the page is prerendered as a fallback shell, while allowing\n * any dynamic accesses to result in an empty shell. This is the case when\n * the app has `experimental.ppr` and `experimental.cacheComponents` enabled, and\n * there are also routes prerendered with a more complete set of params.\n * Prerendering those routes would catch any invalid dynamic accesses.\n *\n * @internal\n */\n _allowEmptyStaticShell?: boolean\n }\n}\n\n/**\n * Next.js can be configured through a `next.config.js` file in the root of your project directory.\n *\n * This can change the behavior, enable experimental features, and configure other advanced options.\n *\n * Read more: [Next.js Docs: `next.config.js`](https://nextjs.org/docs/app/api-reference/config/next-config-js)\n */\nexport interface NextConfig {\n allowedDevOrigins?: string[]\n\n exportPathMap?: (\n defaultMap: ExportPathMap,\n ctx: {\n dev: boolean\n dir: string\n outDir: string | null\n distDir: string\n buildId: string\n }\n ) => Promise<ExportPathMap> | ExportPathMap\n\n /**\n * Internationalization configuration\n *\n * @see [Internationalization docs](https://nextjs.org/docs/advanced-features/i18n-routing)\n */\n i18n?: I18NConfig | null\n\n /**\n * @since version 11\n * @see [ESLint configuration](https://nextjs.org/docs/app/api-reference/config/eslint)\n */\n eslint?: ESLintConfig\n\n /**\n * @see [Next.js TypeScript documentation](https://nextjs.org/docs/app/api-reference/config/typescript)\n */\n typescript?: TypeScriptConfig\n\n /**\n * Enable type checking for Link and Router.push, etc.\n * This feature requires TypeScript in your project.\n *\n * @see [Typed Links documentation](https://nextjs.org/docs/app/api-reference/config/typescript#statically-typed-links)\n */\n typedRoutes?: boolean\n\n /**\n * Headers allow you to set custom HTTP headers for an incoming request path.\n *\n * @see [Headers configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/headers)\n */\n headers?: () => Promise<Header[]> | Header[]\n\n /**\n * Rewrites allow you to map an incoming request path to a different destination path.\n *\n * @see [Rewrites configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/rewrites)\n */\n rewrites?: () =>\n | Promise<\n | Rewrite[]\n | {\n beforeFiles?: Rewrite[]\n afterFiles?: Rewrite[]\n fallback?: Rewrite[]\n }\n >\n | Rewrite[]\n | {\n beforeFiles?: Rewrite[]\n afterFiles?: Rewrite[]\n fallback?: Rewrite[]\n }\n\n /**\n * Redirects allow you to redirect an incoming request path to a different destination path.\n *\n * @see [Redirects configuration documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/redirects)\n */\n redirects?: () => Promise<Redirect[]> | Redirect[]\n\n /**\n * @see [Moment.js locales excluded by default](https://nextjs.org/docs/upgrading#momentjs-locales-excluded-by-default)\n */\n excludeDefaultMomentLocales?: boolean\n\n /**\n * Before continuing to add custom webpack configuration to your application make sure Next.js doesn't already support your use-case\n *\n * @see [Custom Webpack Config documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/webpack)\n */\n webpack?: NextJsWebpackConfig | null\n\n /**\n * By default Next.js will redirect urls with trailing slashes to their counterpart without a trailing slash.\n *\n * @default false\n * @see [Trailing Slash Configuration](https://nextjs.org/docs/app/api-reference/config/next-config-js/trailingSlash)\n */\n trailingSlash?: boolean\n\n /**\n * Next.js comes with built-in support for environment variables\n *\n * @see [Environment Variables documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/env)\n */\n env?: Record<string, string | undefined>\n\n /**\n * Destination directory (defaults to `.next`)\n */\n distDir?: string\n\n /**\n * The build output directory (defaults to `.next`) is now cleared by default except for the Next.js caches.\n */\n cleanDistDir?: boolean\n\n /**\n * To set up a CDN, you can set up an asset prefix and configure your CDN's origin to resolve to the domain that Next.js is hosted on.\n *\n * @see [CDN Support with Asset Prefix](https://nextjs.org/docs/app/api-reference/config/next-config-js/assetPrefix)\n */\n assetPrefix?: string\n\n /**\n * The default cache handler for the Pages and App Router uses the filesystem cache. This requires no configuration, however, you can customize the cache handler if you prefer.\n *\n * @see [Configuring Caching](https://nextjs.org/docs/app/building-your-application/deploying#configuring-caching) and the [API Reference](https://nextjs.org/docs/app/api-reference/next-config-js/incrementalCacheHandlerPath).\n */\n cacheHandler?: string | undefined\n\n /**\n * Configure the in-memory cache size in bytes. Defaults to 50 MB.\n * If `cacheMaxMemorySize: 0`, this disables in-memory caching entirely.\n *\n * @see [Configuring Caching](https://nextjs.org/docs/app/building-your-application/deploying#configuring-caching).\n */\n cacheMaxMemorySize?: number\n\n /**\n * By default, `Next` will serve each file in the `pages` folder under a pathname matching the filename.\n * To disable this behavior and prevent routing based set this to `true`.\n *\n * @default true\n * @see [Disabling file-system routing](https://nextjs.org/docs/advanced-features/custom-server#disabling-file-system-routing)\n */\n useFileSystemPublicRoutes?: boolean\n\n /**\n * @see [Configuring the build ID](https://nextjs.org/docs/app/api-reference/config/next-config-js/generateBuildId)\n */\n generateBuildId?: () => string | null | Promise<string | null>\n\n /** @see [Disabling ETag Configuration](https://nextjs.org/docs/app/api-reference/config/next-config-js/generateEtags) */\n generateEtags?: boolean\n\n /** @see [Including non-page files in the pages directory](https://nextjs.org/docs/app/api-reference/config/next-config-js/pageExtensions) */\n pageExtensions?: string[]\n\n /** @see [Compression documentation](https://nextjs.org/docs/app/api-reference/config/next-config-js/compress) */\n compress?: boolean\n\n /** @see [Disabling x-powered-by](https://nextjs.org/docs/app/api-reference/config/next-config-js/poweredByHeader) */\n poweredByHeader?: boolean\n\n /** @see [Using the Image Component](https://nextjs.org/docs/app/api-reference/next-config-js/images) */\n images?: ImageConfig\n\n /** Configure indicators in development environment */\n devIndicators?:\n | false\n | {\n /**\n * Position of the development tools indicator in the browser window.\n * @default \"bottom-left\"\n * */\n position?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right'\n }\n\n /**\n * Next.js exposes some options that give you some control over how the server will dispose or keep in memory built pages in development.\n *\n * @see [Configuring `onDemandEntries`](https://nextjs.org/docs/app/api-reference/config/next-config-js/onDemandEntries)\n */\n onDemandEntries?: {\n /** period (in ms) where the server will keep pages in the buffer */\n maxInactiveAge?: number\n /** number of pages that should be kept simultaneously without being disposed */\n pagesBufferLength?: number\n }\n\n /**\n * @deprecated built-in amp support will be removed in Next 16\n * @see [`next/amp`](https://nextjs.org/docs/api-reference/next/amp)\n */\n amp?: {\n canonicalBase?: string\n }\n\n /**\n * A unique identifier for a deployment that will be included in each request's query string or header.\n */\n deploymentId?: string\n\n /**\n * Deploy a Next.js application under a sub-path of a domain\n *\n * @see [Base path configuration](https://nextjs.org/docs/app/api-reference/config/next-config-js/basePath)\n */\n basePath?: string\n\n /** @see [Customizing sass options](https://nextjs.org/docs/app/api-reference/next-config-js/sassOptions) */\n sassOptions?: {\n implementation?: string\n [key: string]: any\n }\n\n /**\n * Enable browser source map generation during the production build\n *\n * @see [Source Maps](https://nextjs.org/docs/advanced-features/source-maps)\n */\n productionBrowserSourceMaps?: boolean\n\n /**\n * Enable {@link https://nextjs.org/docs/app/api-reference/config/next-config-js/reactCompiler React Compiler in Next.js}.\n * Configuration accepts partial config object of the Compiler.\n * If provided, the Compiler will be enabled.\n */\n reactCompiler?: boolean | ReactCompilerOptions\n\n /**\n * Enable react profiling in production\n *\n */\n reactProductionProfiling?: boolean\n\n /**\n * The Next.js runtime is Strict Mode-compliant.\n *\n * @see [React Strict Mode](https://nextjs.org/docs/app/api-reference/config/next-config-js/reactStrictMode)\n */\n reactStrictMode?: boolean | null\n\n /**\n * The maximum length of the headers that are emitted by React and added to\n * the response.\n *\n * @see [React Max Headers Length](https://nextjs.org/docs/app/api-reference/config/next-config-js/reactMaxHeadersLength)\n */\n reactMaxHeadersLength?: number\n\n /**\n * Add public (in browser) runtime configuration to your app\n *\n * @see [Runtime configuration](https://nextjs.org/docs/pages/api-reference/config/next-config-js/runtime-configuration\n */\n publicRuntimeConfig?: { [key: string]: any }\n\n /**\n * Add server runtime configuration to your app\n *\n * @see [Runtime configuration](https://nextjs.org/docs/pages/api-reference/config/next-config-js/runtime-configuration\n */\n serverRuntimeConfig?: { [key: string]: any }\n\n /**\n * Next.js enables HTTP Keep-Alive by default.\n * You may want to disable HTTP Keep-Alive for certain `fetch()` calls or globally.\n *\n * @see [Disabling HTTP Keep-Alive](https://nextjs.org/docs/app/api-reference/next-config-js/httpAgentOptions)\n */\n httpAgentOptions?: { keepAlive?: boolean }\n\n /**\n * Timeout after waiting to generate static pages in seconds\n *\n * @default 60\n */\n staticPageGenerationTimeout?: number\n\n /**\n * Add `\"crossorigin\"` attribute to generated `<script>` elements generated by `<Head />` or `<NextScript />` components\n *\n *\n * @see [`crossorigin` attribute documentation](https://developer.mozilla.org/docs/Web/HTML/Attributes/crossorigin)\n */\n crossOrigin?: 'anonymous' | 'use-credentials'\n\n /**\n * Optionally enable compiler transforms\n *\n * @see [Supported Compiler Options](https://nextjs.org/docs/advanced-features/compiler#supported-features)\n */\n compiler?: {\n reactRemoveProperties?:\n | boolean\n | {\n properties?: string[]\n }\n relay?: {\n src: string\n artifactDirectory?: string\n language?: 'typescript' | 'javascript' | 'flow'\n eagerEsModules?: boolean\n }\n removeConsole?:\n | boolean\n | {\n exclude?: string[]\n }\n styledComponents?: boolean | StyledComponentsConfig\n emotion?: boolean | EmotionConfig\n\n styledJsx?:\n | boolean\n | {\n useLightningcss?: boolean\n }\n\n /**\n * Replaces variables in your code during compile time. Each key will be\n * replaced with the respective values.\n */\n define?: Record<string, string>\n\n /**\n * Replaces server-only (Node.js and Edge) variables in your code during compile time.\n * Each key will be replaced with the respective values.\n */\n defineServer?: Record<string, string>\n\n /**\n * A hook function that executes after production build compilation finishes,\n * but before running post-compilation tasks such as type checking and\n * static page generation.\n */\n runAfterProductionCompile?: (metadata: {\n /**\n * The root directory of the project\n */\n projectDir: string\n /**\n * The build output directory (defaults to `.next`)\n */\n distDir: string\n }) => Promise<void>\n }\n\n /**\n * The type of build output.\n * - `undefined`: The default build output, `.next` directory, that works with production mode `next start` or a hosting provider like Vercel\n * - `'standalone'`: A standalone build output, `.next/standalone` directory, that only includes necessary files/dependencies. Useful for self-hosting in a Docker container.\n * - `'export'`: An exported build output, `out` directory, that only includes static HTML/CSS/JS. Useful for self-hosting without a Node.js server.\n * @see [Output File Tracing](https://nextjs.org/docs/advanced-features/output-file-tracing)\n * @see [Static HTML Export](https://nextjs.org/docs/advanced-features/static-html-export)\n */\n output?: 'standalone' | 'export'\n\n /**\n * Automatically transpile and bundle dependencies from local packages (like monorepos) or from external dependencies (`node_modules`). This replaces the\n * `next-transpile-modules` package.\n * @see [transpilePackages](https://nextjs.org/docs/advanced-features/compiler#module-transpilation)\n */\n transpilePackages?: string[]\n\n /**\n * Options for Turbopack. Temporarily also available as `experimental.turbo` for compatibility.\n */\n turbopack?: TurbopackOptions\n\n skipMiddlewareUrlNormalize?: boolean\n\n skipTrailingSlashRedirect?: boolean\n\n modularizeImports?: Record<\n string,\n {\n transform: string | Record<string, string>\n preventFullImport?: boolean\n skipDefaultConversion?: boolean\n }\n >\n\n /**\n * Logging configuration. Set to `false` to disable logging.\n */\n logging?: LoggingConfig | false\n\n /**\n * period (in seconds) where the server allow to serve stale cache\n */\n expireTime?: number\n\n /**\n * Enable experimental features. Note that all experimental features are subject to breaking changes in the future.\n */\n experimental?: ExperimentalConfig\n\n /**\n * Enables the bundling of node_modules packages (externals) for pages server-side bundles.\n * @see https://nextjs.org/docs/pages/api-reference/next-config-js/bundlePagesRouterDependencies\n */\n bundlePagesRouterDependencies?: boolean\n\n /**\n * A list of packages that should be treated as external in the server build.\n * @see https://nextjs.org/docs/app/api-reference/next-config-js/serverExternalPackages\n */\n serverExternalPackages?: string[]\n\n /**\n * This is the repo root usually and only files above this\n * directory are traced and included.\n */\n outputFileTracingRoot?: string\n\n /**\n * This allows manually excluding traced files if too many\n * are included incorrectly on a per-page basis.\n */\n outputFileTracingExcludes?: Record<string, string[]>\n\n /**\n * This allows manually including traced files if some\n * were not detected on a per-page basis.\n */\n outputFileTracingIncludes?: Record<string, string[]>\n\n watchOptions?: {\n pollIntervalMs?: number\n }\n\n /**\n * User Agent of bots that can handle streaming metadata.\n * Besides the default behavior, Next.js act differently on serving metadata to bots based on their capability.\n *\n * @default\n * /Mediapartners-Google|Slurp|DuckDuckBot|baiduspider|yandex|sogou|bitlybot|tumblr|vkShare|quora link preview|redditbot|ia_archiver|Bingbot|BingPreview|applebot|facebookexternalhit|facebookcatalog|Twitterbot|LinkedInBot|Slackbot|Discordbot|WhatsApp|SkypeUriPreview/i\n */\n htmlLimitedBots?: RegExp\n\n /**\n * @internal\n */\n configFile?: string | undefined\n\n /**\n * @internal\n */\n configOrigin?: string | undefined\n\n /**\n * @internal\n */\n _originalRedirects?: any\n\n /**\n * @internal\n */\n _originalRewrites?: any\n}\n\nexport const defaultConfig = Object.freeze({\n env: {},\n webpack: null,\n eslint: {\n ignoreDuringBuilds: false,\n },\n typescript: {\n ignoreBuildErrors: false,\n tsconfigPath: undefined,\n },\n typedRoutes: false,\n distDir: '.next',\n cleanDistDir: true,\n assetPrefix: '',\n cacheHandler: process.env.NEXT_CACHE_HANDLER_PATH,\n // default to 50MB limit\n cacheMaxMemorySize: 50 * 1024 * 1024,\n configOrigin: 'default',\n useFileSystemPublicRoutes: true,\n generateBuildId: () => null,\n generateEtags: true,\n pageExtensions: ['tsx', 'ts', 'jsx', 'js'],\n poweredByHeader: true,\n compress: true,\n images: imageConfigDefault,\n devIndicators: {\n position: 'bottom-left',\n },\n onDemandEntries: {\n maxInactiveAge: 60 * 1000,\n pagesBufferLength: 5,\n },\n amp: {\n canonicalBase: '',\n },\n basePath: '',\n sassOptions: {},\n trailingSlash: false,\n i18n: null,\n productionBrowserSourceMaps: false,\n excludeDefaultMomentLocales: true,\n serverRuntimeConfig: {},\n publicRuntimeConfig: {},\n reactCompiler: undefined,\n reactProductionProfiling: false,\n reactStrictMode: null,\n reactMaxHeadersLength: 6000,\n httpAgentOptions: {\n keepAlive: true,\n },\n logging: {},\n compiler: {},\n expireTime: process.env.NEXT_PRIVATE_CDN_CONSUMED_SWR_CACHE_CONTROL\n ? undefined\n : 31536000, // one year\n staticPageGenerationTimeout: 60,\n output: !!process.env.NEXT_PRIVATE_STANDALONE ? 'standalone' : undefined,\n modularizeImports: undefined,\n outputFileTracingRoot: process.env.NEXT_PRIVATE_OUTPUT_TRACE_ROOT || '',\n allowedDevOrigins: undefined,\n experimental: {\n adapterPath: process.env.NEXT_ADAPTER_PATH || undefined,\n useSkewCookie: false,\n cacheLife: {\n default: {\n stale: undefined, // defaults to staleTimes.static\n revalidate: 60 * 15, // 15 minutes\n expire: INFINITE_CACHE,\n },\n seconds: {\n stale: 30, // 30 seconds\n revalidate: 1, // 1 second\n expire: 60, // 1 minute\n },\n minutes: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60, // 1 minute\n expire: 60 * 60, // 1 hour\n },\n hours: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60 * 60, // 1 hour\n expire: 60 * 60 * 24, // 1 day\n },\n days: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60 * 60 * 24, // 1 day\n expire: 60 * 60 * 24 * 7, // 1 week\n },\n weeks: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60 * 60 * 24 * 7, // 1 week\n expire: 60 * 60 * 24 * 30, // 1 month\n },\n max: {\n stale: 60 * 5, // 5 minutes\n revalidate: 60 * 60 * 24 * 30, // 1 month\n expire: INFINITE_CACHE, // Unbounded.\n },\n },\n cacheHandlers: {\n default: process.env.NEXT_DEFAULT_CACHE_HANDLER_PATH,\n remote: process.env.NEXT_REMOTE_CACHE_HANDLER_PATH,\n static: process.env.NEXT_STATIC_CACHE_HANDLER_PATH,\n },\n cssChunking: true,\n multiZoneDraftMode: false,\n appNavFailHandling: false,\n prerenderEarlyExit: true,\n serverMinification: true,\n // Will default to cacheComponents value.\n enablePrerenderSourceMaps: undefined,\n serverSourceMaps: false,\n linkNoTouchStart: false,\n caseSensitiveRoutes: false,\n clientSegmentCache: false,\n rdcForNavigations: false,\n clientParamParsing: false,\n clientParamParsingOrigins: undefined,\n dynamicOnHover: false,\n preloadEntriesOnStart: true,\n clientRouterFilter: true,\n clientRouterFilterRedirects: false,\n fetchCacheKeyPrefix: '',\n middlewarePrefetch: 'flexible',\n optimisticClientCache: true,\n manualClientBasePath: false,\n cpus: Math.max(\n 1,\n (Number(process.env.CIRCLE_NODE_TOTAL) ||\n (os.cpus() || { length: 1 }).length) - 1\n ),\n memoryBasedWorkersCount: false,\n imgOptConcurrency: null,\n imgOptTimeoutInSeconds: 7,\n imgOptMaxInputPixels: 268_402_689, // https://sharp.pixelplumbing.com/api-constructor#:~:text=%5Boptions.limitInputPixels%5D\n imgOptSequentialRead: null,\n imgOptSkipMetadata: null,\n isrFlushToDisk: true,\n workerThreads: false,\n proxyTimeout: undefined,\n optimizeCss: false,\n nextScriptWorkers: false,\n scrollRestoration: false,\n externalDir: false,\n disableOptimizedLoading: false,\n gzipSize: true,\n craCompat: false,\n esmExternals: true,\n fullySpecified: false,\n swcTraceProfiling: false,\n forceSwcTransforms: false,\n swcPlugins: undefined,\n largePageDataBytes: 128 * 1000, // 128KB by default\n disablePostcssPresetEnv: undefined,\n amp: undefined,\n urlImports: undefined,\n typedEnv: false,\n clientTraceMetadata: undefined,\n parallelServerCompiles: false,\n parallelServerBuildTraces: false,\n ppr: false,\n authInterrupts: false,\n webpackBuildWorker: undefined,\n webpackMemoryOptimizations: false,\n optimizeServerReact: true,\n viewTransition: false,\n routerBFCache: false,\n removeUncaughtErrorAndRejectionListeners: false,\n validateRSCRequestHeaders: !!(\n process.env.__NEXT_TEST_MODE || !isStableBuild()\n ),\n staleTimes: {\n dynamic: 0,\n static: 300,\n },\n allowDevelopmentBuild: undefined,\n reactDebugChannel: false,\n staticGenerationRetryCount: undefined,\n serverComponentsHmrCache: true,\n staticGenerationMaxConcurrency: 8,\n staticGenerationMinPagesPerWorker: 25,\n cacheComponents: false,\n inlineCss: false,\n useCache: undefined,\n slowModuleDetection: undefined,\n globalNotFound: false,\n browserDebugInfoInTerminal: false,\n isolatedDevBuild:\n process.env.__NEXT_EXPERIMENTAL_ISOLATED_DEV_BUILD === 'true',\n mcpServer: !!process.env.__NEXT_EXPERIMENTAL_MCP_SERVER,\n },\n htmlLimitedBots: undefined,\n bundlePagesRouterDependencies: false,\n} satisfies NextConfig)\n\nexport async function normalizeConfig(phase: string, config: any) {\n if (typeof config === 'function') {\n config = config(phase, { defaultConfig })\n }\n // Support `new Promise` and `async () =>` as return values of the config export\n return await config\n}\n"],"names":["defaultConfig","normalizeConfig","Object","freeze","env","webpack","eslint","ignoreDuringBuilds","typescript","ignoreBuildErrors","tsconfigPath","undefined","typedRoutes","distDir","cleanDistDir","assetPrefix","cacheHandler","process","NEXT_CACHE_HANDLER_PATH","cacheMaxMemorySize","configOrigin","useFileSystemPublicRoutes","generateBuildId","generateEtags","pageExtensions","poweredByHeader","compress","images","imageConfigDefault","devIndicators","position","onDemandEntries","maxInactiveAge","pagesBufferLength","amp","canonicalBase","basePath","sassOptions","trailingSlash","i18n","productionBrowserSourceMaps","excludeDefaultMomentLocales","serverRuntimeConfig","publicRuntimeConfig","reactCompiler","reactProductionProfiling","reactStrictMode","reactMaxHeadersLength","httpAgentOptions","keepAlive","logging","compiler","expireTime","NEXT_PRIVATE_CDN_CONSUMED_SWR_CACHE_CONTROL","staticPageGenerationTimeout","output","NEXT_PRIVATE_STANDALONE","modularizeImports","outputFileTracingRoot","NEXT_PRIVATE_OUTPUT_TRACE_ROOT","allowedDevOrigins","experimental","adapterPath","NEXT_ADAPTER_PATH","useSkewCookie","cacheLife","default","stale","revalidate","expire","INFINITE_CACHE","seconds","minutes","hours","days","weeks","max","cacheHandlers","NEXT_DEFAULT_CACHE_HANDLER_PATH","remote","NEXT_REMOTE_CACHE_HANDLER_PATH","static","NEXT_STATIC_CACHE_HANDLER_PATH","cssChunking","multiZoneDraftMode","appNavFailHandling","prerenderEarlyExit","serverMinification","enablePrerenderSourceMaps","serverSourceMaps","linkNoTouchStart","caseSensitiveRoutes","clientSegmentCache","rdcForNavigations","clientParamParsing","clientParamParsingOrigins","dynamicOnHover","preloadEntriesOnStart","clientRouterFilter","clientRouterFilterRedirects","fetchCacheKeyPrefix","middlewarePrefetch","optimisticClientCache","manualClientBasePath","cpus","Math","Number","CIRCLE_NODE_TOTAL","os","length","memoryBasedWorkersCount","imgOptConcurrency","imgOptTimeoutInSeconds","imgOptMaxInputPixels","imgOptSequentialRead","imgOptSkipMetadata","isrFlushToDisk","workerThreads","proxyTimeout","optimizeCss","nextScriptWorkers","scrollRestoration","externalDir","disableOptimizedLoading","gzipSize","craCompat","esmExternals","fullySpecified","swcTraceProfiling","forceSwcTransforms","swcPlugins","largePageDataBytes","disablePostcssPresetEnv","urlImports","typedEnv","clientTraceMetadata","parallelServerCompiles","parallelServerBuildTraces","ppr","authInterrupts","webpackBuildWorker","webpackMemoryOptimizations","optimizeServerReact","viewTransition","routerBFCache","removeUncaughtErrorAndRejectionListeners","validateRSCRequestHeaders","__NEXT_TEST_MODE","isStableBuild","staleTimes","dynamic","allowDevelopmentBuild","reactDebugChannel","staticGenerationRetryCount","serverComponentsHmrCache","staticGenerationMaxConcurrency","staticGenerationMinPagesPerWorker","cacheComponents","inlineCss","useCache","slowModuleDetection","globalNotFound","browserDebugInfoInTerminal","isolatedDevBuild","__NEXT_EXPERIMENTAL_ISOLATED_DEV_BUILD","mcpServer","__NEXT_EXPERIMENTAL_MCP_SERVER","htmlLimitedBots","bundlePagesRouterDependencies","phase","config"],"mappings":"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","ignoreList":[0]}
|