Files
Webklar.com/node_modules/next/dist/build/webpack-config.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

197 lines
7.9 KiB
TypeScript

import { webpack } from 'next/dist/compiled/webpack/webpack';
import { CustomRoutes } from '../lib/load-custom-routes.js';
import { CompilerNameValues } from '../shared/lib/constants';
import { NextConfigComplete } from '../server/config-shared';
import type { Span } from '../trace';
import type { MiddlewareMatcher } from './analysis/get-page-static-info';
export declare function getDefineEnv({ allowedRevalidateHeaderKeys, clientRouterFilters, config, dev, distDir, fetchCacheKeyPrefix, hasRewrites, isClient, isEdgeServer, isNodeOrEdgeCompilation, isNodeServer, middlewareMatchers, previewModeId, }: {
allowedRevalidateHeaderKeys: string[] | undefined;
clientRouterFilters: Parameters<typeof getBaseWebpackConfig>[1]['clientRouterFilters'];
config: NextConfigComplete;
dev: boolean;
distDir: string;
fetchCacheKeyPrefix: string | undefined;
hasRewrites: boolean;
isClient: boolean;
isEdgeServer: boolean;
isNodeOrEdgeCompilation: boolean;
isNodeServer: boolean;
middlewareMatchers: MiddlewareMatcher[] | undefined;
previewModeId: string | undefined;
}): {
'process.env.__NEXT_EXPERIMENTAL_REACT'?: string | undefined;
'process.env.TURBOPACK': string;
'global.GENTLY'?: string | undefined;
'process.env.__NEXT_TRAILING_SLASH': string;
'process.env.__NEXT_BUILD_INDICATOR': string;
'process.env.__NEXT_BUILD_INDICATOR_POSITION': string;
'process.env.__NEXT_STRICT_MODE': string;
'process.env.__NEXT_STRICT_MODE_APP': string;
'process.env.__NEXT_OPTIMIZE_FONTS': string;
'process.env.__NEXT_OPTIMIZE_CSS': string;
'process.env.__NEXT_SCRIPT_WORKERS': string;
'process.env.__NEXT_SCROLL_RESTORATION': string;
'process.env.__NEXT_IMAGE_OPTS': string;
'process.env.__NEXT_ROUTER_BASEPATH': string;
'process.env.__NEXT_STRICT_NEXT_HEAD': string;
'process.env.__NEXT_HAS_REWRITES': string;
'process.env.__NEXT_CONFIG_OUTPUT': string;
'process.env.__NEXT_I18N_SUPPORT': string;
'process.env.__NEXT_I18N_DOMAINS': string;
'process.env.__NEXT_ANALYTICS_ID': string;
'process.env.__NEXT_NO_MIDDLEWARE_URL_NORMALIZE': string;
'process.env.__NEXT_EXTERNAL_MIDDLEWARE_REWRITE_RESOLVE': string;
'process.env.__NEXT_MANUAL_TRAILING_SLASH': string;
'process.env.__NEXT_HAS_WEB_VITALS_ATTRIBUTION': string;
'process.env.__NEXT_WEB_VITALS_ATTRIBUTION': string;
'process.env.__NEXT_ASSET_PREFIX': string;
'process.env.__NEXT_DIST_DIR'?: string | undefined;
'process.turbopack': string;
'process.env.NODE_ENV': string;
'process.env.NEXT_RUNTIME': string;
'process.env.NEXT_MINIMAL': string;
'process.env.__NEXT_ACTIONS_DEPLOYMENT_ID': string;
'process.env.NEXT_DEPLOYMENT_ID': string;
'process.env.__NEXT_FETCH_CACHE_KEY_PREFIX': string;
'process.env.__NEXT_PREVIEW_MODE_ID': string;
'process.env.__NEXT_ALLOWED_REVALIDATE_HEADERS': string;
'process.env.__NEXT_MIDDLEWARE_MATCHERS': string;
'process.env.__NEXT_MANUAL_CLIENT_BASE_PATH': string;
'process.env.__NEXT_CLIENT_ROUTER_FILTER_ENABLED': string;
'process.env.__NEXT_CLIENT_ROUTER_S_FILTER': string;
'process.env.__NEXT_CLIENT_ROUTER_D_FILTER': string;
'process.env.__NEXT_OPTIMISTIC_CLIENT_CACHE': string;
'process.env.__NEXT_MIDDLEWARE_PREFETCH': string;
'process.env.__NEXT_CROSS_ORIGIN': string;
'process.browser': string;
'process.env.__NEXT_TEST_MODE': string;
EdgeRuntime?: string | undefined;
__NEXT_DEFINE_ENV: string;
};
export declare function attachReactRefresh(webpackConfig: webpack.Configuration, targetLoader: webpack.RuleSetUseItem): void;
export declare const NODE_RESOLVE_OPTIONS: {
dependencyType: string;
modules: string[];
fallback: boolean;
exportsFields: string[];
importsFields: string[];
conditionNames: string[];
descriptionFiles: string[];
extensions: string[];
enforceExtensions: boolean;
symlinks: boolean;
mainFields: string[];
mainFiles: string[];
roots: never[];
fullySpecified: boolean;
preferRelative: boolean;
preferAbsolute: boolean;
restrictions: never[];
};
export declare const NODE_BASE_RESOLVE_OPTIONS: {
alias: boolean;
dependencyType: string;
modules: string[];
fallback: boolean;
exportsFields: string[];
importsFields: string[];
conditionNames: string[];
descriptionFiles: string[];
extensions: string[];
enforceExtensions: boolean;
symlinks: boolean;
mainFields: string[];
mainFiles: string[];
roots: never[];
fullySpecified: boolean;
preferRelative: boolean;
preferAbsolute: boolean;
restrictions: never[];
};
export declare const NODE_ESM_RESOLVE_OPTIONS: {
alias: boolean;
dependencyType: string;
conditionNames: string[];
fullySpecified: boolean;
modules: string[];
fallback: boolean;
exportsFields: string[];
importsFields: string[];
descriptionFiles: string[];
extensions: string[];
enforceExtensions: boolean;
symlinks: boolean;
mainFields: string[];
mainFiles: string[];
roots: never[];
preferRelative: boolean;
preferAbsolute: boolean;
restrictions: never[];
};
export declare const NODE_BASE_ESM_RESOLVE_OPTIONS: {
alias: boolean;
dependencyType: string;
conditionNames: string[];
fullySpecified: boolean;
modules: string[];
fallback: boolean;
exportsFields: string[];
importsFields: string[];
descriptionFiles: string[];
extensions: string[];
enforceExtensions: boolean;
symlinks: boolean;
mainFields: string[];
mainFiles: string[];
roots: never[];
preferRelative: boolean;
preferAbsolute: boolean;
restrictions: never[];
};
export declare const nextImageLoaderRegex: RegExp;
export declare function resolveExternal(dir: string, esmExternalsConfig: NextConfigComplete['experimental']['esmExternals'], context: string, request: string, isEsmRequested: boolean, hasAppDir: boolean, getResolve: (options: any) => (resolveContext: string, resolveRequest: string) => Promise<[string | null, boolean]>, isLocalCallback?: (res: string) => any, baseResolveCheck?: boolean, esmResolveOptions?: any, nodeResolveOptions?: any, baseEsmResolveOptions?: any, baseResolveOptions?: any): Promise<{
localRes: any;
res?: undefined;
isEsm?: undefined;
} | {
res: string | null;
isEsm: boolean;
localRes?: undefined;
}>;
export declare function loadProjectInfo({ dir, config, dev, }: {
dir: string;
config: NextConfigComplete;
dev: boolean;
}): Promise<{
jsConfig: any;
resolvedBaseUrl: string | undefined;
supportedBrowsers: string[] | undefined;
}>;
export default function getBaseWebpackConfig(dir: string, { buildId, config, compilerType, dev, entrypoints, isDevFallback, pagesDir, reactProductionProfiling, rewrites, originalRewrites, originalRedirects, runWebpackSpan, appDir, middlewareMatchers, noMangling, jsConfig, resolvedBaseUrl, supportedBrowsers, clientRouterFilters, previewModeId, fetchCacheKeyPrefix, allowedRevalidateHeaderKeys, }: {
buildId: string;
config: NextConfigComplete;
compilerType: CompilerNameValues;
dev?: boolean;
entrypoints: webpack.EntryObject;
isDevFallback?: boolean;
pagesDir?: string;
reactProductionProfiling?: boolean;
rewrites: CustomRoutes['rewrites'];
originalRewrites: CustomRoutes['rewrites'] | undefined;
originalRedirects: CustomRoutes['redirects'] | undefined;
runWebpackSpan: Span;
appDir?: string;
middlewareMatchers?: MiddlewareMatcher[];
noMangling?: boolean;
jsConfig: any;
resolvedBaseUrl: string | undefined;
supportedBrowsers: string[] | undefined;
clientRouterFilters?: {
staticFilter: ReturnType<import('../shared/lib/bloom-filter').BloomFilter['export']>;
dynamicFilter: ReturnType<import('../shared/lib/bloom-filter').BloomFilter['export']>;
};
previewModeId?: string;
fetchCacheKeyPrefix?: string;
allowedRevalidateHeaderKeys?: string[];
}): Promise<webpack.Configuration>;