/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/build
NameSizeModeActions
adapter/-0777rm
analysis/-0777rm
babel/-0777rm
jest/-0777rm
manifests/-0777rm
next-config-ts/-0777rm
output/-0777rm
polyfills/-0777rm
segment-config/-0777rm
static-paths/-0777rm
swc/-0777rm
templates/-0777rm
turbopack-build/-0777rm
turborepo-access-trace/-0777rm
webpack/-0777rm
webpack-build/-0777rm
webpack-config-rules/-0777rm
after-production-compile.d.ts4310666editdlrm
after-production-compile.js33390666editdlrm
after-production-compile.js.map31290666editdlrm
build-context.d.ts20570666editdlrm
build-context.js16030666editdlrm
build-context.js.map40420666editdlrm
collect-build-traces.d.ts7570666editdlrm
collect-build-traces.js242760666editdlrm
collect-build-traces.js.map355400666editdlrm
compiler.d.ts5430666editdlrm
compiler.js32620666editdlrm
compiler.js.map48020666editdlrm
create-compiler-aliases.d.ts13070666editdlrm
create-compiler-aliases.js270860666editdlrm
create-compiler-aliases.js.map399590666editdlrm
define-env.d.ts12590666editdlrm
define-env.js147490666editdlrm
define-env.js.map231420666editdlrm
deployment-id.d.ts690666editdlrm
deployment-id.js4660666editdlrm
deployment-id.js.map5230666editdlrm
duration-to-string.d.ts760666editdlrm
duration-to-string.js7580666editdlrm
duration-to-string.js.map11010666editdlrm
entries.d.ts82020666editdlrm
entries.js378860666editdlrm
entries.js.map620370666editdlrm
generate-build-id.d.ts1380666editdlrm
generate-build-id.js10060666editdlrm
generate-build-id.js.map12150666editdlrm
get-babel-config-file.d.ts770666editdlrm
get-babel-config-file.js8560666editdlrm
get-babel-config-file.js.map10980666editdlrm
get-babel-loader-config.d.ts17130666editdlrm
get-babel-loader-config.js35570666editdlrm
get-babel-loader-config.js.map48960666editdlrm
handle-entrypoints.d.ts4700666editdlrm
handle-entrypoints.js65600666editdlrm
handle-entrypoints.js.map71740666editdlrm
handle-externals.d.ts14150666editdlrm
handle-externals.js144260666editdlrm
handle-externals.js.map216040666editdlrm
index.d.ts93240666editdlrm
index.js1538270666editdlrm
index.js.map2263100666editdlrm
is-writeable.d.ts740666editdlrm
is-writeable.js6530666editdlrm
is-writeable.js.map6560666editdlrm
load-entrypoint.d.ts10090666editdlrm
load-entrypoint.js15200666editdlrm
load-entrypoint.js.map31070666editdlrm
load-jsconfig.d.ts5140666editdlrm
load-jsconfig.js56930666editdlrm
load-jsconfig.js.map65350666editdlrm
next-dir-paths.d.ts1610666editdlrm
next-dir-paths.js11200666editdlrm
next-dir-paths.js.map7350666editdlrm
normalize-catchall-routes.d.ts6090666editdlrm
normalize-catchall-routes.js40820666editdlrm
normalize-catchall-routes.js.map66120666editdlrm
page-extensions-type.d.ts390666editdlrm
page-extensions-type.js1300666editdlrm
page-extensions-type.js.map670666editdlrm
preview-key-utils.d.ts2060666editdlrm
preview-key-utils.js37110666editdlrm
preview-key-utils.js.map59200666editdlrm
progress.d.ts1200666editdlrm
progress.js47460666editdlrm
progress.js.map46250666editdlrm
rendering-mode.d.ts5060666editdlrm
rendering-mode.js8260666editdlrm
rendering-mode.js.map7210666editdlrm
spinner.d.ts2180666editdlrm
spinner.js46630666editdlrm
spinner.js.map49780666editdlrm
type-check.d.ts5700666editdlrm
type-check.js72260666editdlrm
type-check.js.map92270666editdlrm
utils.d.ts87460666editdlrm
utils.js604000666editdlrm
utils.js.map959230666editdlrm
webpack-config.d.ts47890666editdlrm
webpack-config.js1137040666editdlrm
webpack-config.js.map1582530666editdlrm
worker.d.ts1720666editdlrm
worker.js8900666editdlrm
worker.js.map5230666editdlrm
write-build-id.d.ts870666editdlrm
write-build-id.js5590666editdlrm
write-build-id.js.map7180666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/build/build-context.js.map (4042B)
{"version":3,"sources":["../../src/build/build-context.ts"],"sourcesContent":["import type { LoadedEnvFiles } from '@next/env'\nimport type { Rewrite, Redirect } from '../lib/load-custom-routes'\nimport type { __ApiPreviewProps } from '../server/api-utils'\nimport type { NextConfigComplete } from '../server/config-shared'\nimport type { Span } from '../trace'\nimport type getBaseWebpackConfig from './webpack-config'\nimport type { TelemetryPluginState } from './webpack/plugins/telemetry-plugin/telemetry-plugin'\nimport type { Telemetry } from '../telemetry/storage'\n\n// A layer for storing data that is used by plugins to communicate with each\n// other between different steps of the build process. This is only internal\n// to Next.js and will not be a part of the final build output.\n// These states don't need to be deeply merged.\nlet pluginState: Record = {}\nexport function resumePluginState(resumedState?: Record) {\n Object.assign(pluginState, resumedState)\n}\n\n// This method gives you the plugin state with typed and mutable value fields\n// behind a proxy so we can lazily initialize the values **after** resuming the\n// plugin state.\nexport function getProxiedPluginState>(\n initialState: State\n) {\n return new Proxy(pluginState, {\n get(target, key: string) {\n if (typeof target[key] === 'undefined') {\n return (target[key] = initialState[key])\n }\n return target[key]\n },\n set(target, key: string, value) {\n target[key] = value\n return true\n },\n }) as State\n}\n\nexport function getPluginState() {\n return pluginState\n}\n\nexport interface MappedPages {\n [page: string]: string\n}\n\n// a global object to store context for the current build\n// this is used to pass data between different steps of the build without having\n// to pass it through function arguments.\n// Not exhaustive, but should be extended to as needed whilst refactoring\nexport const NextBuildContext: Partial<{\n compilerIdx?: number\n pluginState: Record\n // core fields\n dir: string\n distDir: string\n buildId: string\n encryptionKey: string\n config: NextConfigComplete\n appDir: string\n pagesDir: string\n rewrites: {\n fallback: Rewrite[]\n afterFiles: Rewrite[]\n beforeFiles: Rewrite[]\n }\n originalRewrites: {\n fallback: Rewrite[]\n afterFiles: Rewrite[]\n beforeFiles: Rewrite[]\n }\n hasRewrites: boolean\n originalRedirects: Redirect[]\n loadedEnvFiles: LoadedEnvFiles\n previewProps: __ApiPreviewProps\n mappedPages: MappedPages | undefined\n mappedAppPages: MappedPages | undefined\n mappedRootPaths: MappedPages\n hasInstrumentationHook: boolean\n\n // misc fields\n telemetry: Telemetry\n telemetryState: TelemetryPluginState\n nextBuildSpan: Span\n\n // cli fields\n reactProductionProfiling: boolean\n noMangling: boolean\n appDirOnly: boolean\n clientRouterFilters: Parameters<\n typeof getBaseWebpackConfig\n >[1]['clientRouterFilters']\n previewModeId: string\n fetchCacheKeyPrefix?: string\n allowedRevalidateHeaderKeys?: string[]\n isCompileMode?: boolean\n debugPrerender: boolean\n}> = {}\n"],"names":["NextBuildContext","getPluginState","getProxiedPluginState","resumePluginState","pluginState","resumedState","Object","assign","initialState","Proxy","get","target","key","set","value"],"mappings":";;;;;;;;;;;;;;;;;IAkDaA,gBAAgB;eAAhBA;;IAZGC,cAAc;eAAdA;;IAjBAC,qBAAqB;eAArBA;;IAPAC,iBAAiB;eAAjBA;;;AALhB,4EAA4E;AAC5E,4EAA4E;AAC5E,+DAA+D;AAC/D,+CAA+C;AAC/C,IAAIC,cAAmC,CAAC;AACjC,SAASD,kBAAkBE,YAAkC;IAClEC,OAAOC,MAAM,CAACH,aAAaC;AAC7B;AAKO,SAASH,sBACdM,YAAmB;IAEnB,OAAO,IAAIC,MAAML,aAAa;QAC5BM,KAAIC,MAAM,EAAEC,GAAW;YACrB,IAAI,OAAOD,MAAM,CAACC,IAAI,KAAK,aAAa;gBACtC,OAAQD,MAAM,CAACC,IAAI,GAAGJ,YAAY,CAACI,IAAI;YACzC;YACA,OAAOD,MAAM,CAACC,IAAI;QACpB;QACAC,KAAIF,MAAM,EAAEC,GAAW,EAAEE,KAAK;YAC5BH,MAAM,CAACC,IAAI,GAAGE;YACd,OAAO;QACT;IACF;AACF;AAEO,SAASb;IACd,OAAOG;AACT;AAUO,MAAMJ,mBA+CR,CAAC","ignoreList":[0]}