/
home
/
techb158
/
balavpn.abdallabala.com
/
node_modules
/
next
/
dist
/
esm
/
build
/
/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/build
mkdir
upload
Name
Size
Mode
Actions
adapter/
-
0777
rm
analysis/
-
0777
rm
babel/
-
0777
rm
manifests/
-
0777
rm
next-config-ts/
-
0777
rm
output/
-
0777
rm
polyfills/
-
0777
rm
segment-config/
-
0777
rm
static-paths/
-
0777
rm
swc/
-
0777
rm
templates/
-
0777
rm
turbopack-build/
-
0777
rm
turborepo-access-trace/
-
0777
rm
webpack/
-
0777
rm
webpack-build/
-
0777
rm
webpack-config-rules/
-
0777
rm
after-production-compile.js
1622
0666
edit
dl
rm
after-production-compile.js.map
3139
0666
edit
dl
rm
build-context.js
1353
0666
edit
dl
rm
build-context.js.map
4056
0666
edit
dl
rm
collect-build-traces.js
21598
0666
edit
dl
rm
collect-build-traces.js.map
35392
0666
edit
dl
rm
compiler.js
2884
0666
edit
dl
rm
compiler.js.map
4786
0666
edit
dl
rm
create-compiler-aliases.js
24564
0666
edit
dl
rm
create-compiler-aliases.js.map
39961
0666
edit
dl
rm
define-env.js
14335
0666
edit
dl
rm
define-env.js.map
23166
0666
edit
dl
rm
deployment-id.js
218
0666
edit
dl
rm
deployment-id.js.map
506
0666
edit
dl
rm
duration-to-string.js
544
0666
edit
dl
rm
duration-to-string.js.map
1084
0666
edit
dl
rm
entries.js
36260
0666
edit
dl
rm
entries.js.map
61660
0666
edit
dl
rm
generate-build-id.js
794
0666
edit
dl
rm
generate-build-id.js.map
1198
0666
edit
dl
rm
get-babel-config-file.js
622
0666
edit
dl
rm
get-babel-config-file.js.map
1100
0666
edit
dl
rm
get-babel-loader-config.js
2937
0666
edit
dl
rm
get-babel-loader-config.js.map
4885
0666
edit
dl
rm
handle-entrypoints.js
4571
0666
edit
dl
rm
handle-entrypoints.js.map
7076
0666
edit
dl
rm
handle-externals.js
13623
0666
edit
dl
rm
handle-externals.js.map
21653
0666
edit
dl
rm
index.js
147239
0666
edit
dl
rm
index.js.map
225575
0666
edit
dl
rm
is-writeable.js
262
0666
edit
dl
rm
is-writeable.js.map
635
0666
edit
dl
rm
load-entrypoint.js
1700
0666
edit
dl
rm
load-entrypoint.js.map
3098
0666
edit
dl
rm
load-jsconfig.js
3451
0666
edit
dl
rm
load-jsconfig.js.map
6508
0666
edit
dl
rm
next-dir-paths.js
301
0666
edit
dl
rm
next-dir-paths.js.map
681
0666
edit
dl
rm
normalize-catchall-routes.js
4195
0666
edit
dl
rm
normalize-catchall-routes.js.map
6643
0666
edit
dl
rm
page-extensions-type.js
61
0666
edit
dl
rm
page-extensions-type.js.map
180
0666
edit
dl
rm
preview-key-utils.js
3408
0666
edit
dl
rm
preview-key-utils.js.map
5966
0666
edit
dl
rm
progress.js
2949
0666
edit
dl
rm
progress.js.map
4588
0666
edit
dl
rm
rendering-mode.js
618
0666
edit
dl
rm
rendering-mode.js.map
711
0666
edit
dl
rm
spinner.js
2869
0666
edit
dl
rm
spinner.js.map
4933
0666
edit
dl
rm
type-check.js
5278
0666
edit
dl
rm
type-check.js.map
9251
0666
edit
dl
rm
utils.js
53806
0666
edit
dl
rm
utils.js.map
95393
0666
edit
dl
rm
webpack-config.js
108498
0666
edit
dl
rm
webpack-config.js.map
158206
0666
edit
dl
rm
worker.js
206
0666
edit
dl
rm
worker.js.map
481
0666
edit
dl
rm
write-build-id.js
331
0666
edit
dl
rm
write-build-id.js.map
743
0666
edit
dl
rm
Edit:
/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/esm/build/get-babel-loader-config.js
(2937B)
import path from 'path'; function getReactCompiler() { try { // It's in peerDependencies, so it should be available // eslint-disable-next-line import/no-extraneous-dependencies return require.resolve('babel-plugin-react-compiler'); } catch { throw Object.defineProperty(new Error('Failed to load the `babel-plugin-react-compiler`. It is required to use the React Compiler. Please install it.'), "__NEXT_ERROR_CODE", { value: "E78", enumerable: false, configurable: true }); } } const getReactCompilerPlugins = (options, isDev, isServer)=>{ if (!options || isServer) { return undefined; } const compilerOptions = typeof options === 'boolean' ? {} : options; if (options) { return [ [ getReactCompiler(), { panicThreshold: isDev ? undefined : 'NONE', ...compilerOptions } ] ]; } return undefined; }; const getBabelLoader = (useSWCLoader, babelConfigFile, isServer, distDir, pagesDir, cwd, srcDir, dev, isClient, reactCompilerOptions, reactCompilerExclude)=>{ if (!useSWCLoader) { return { loader: require.resolve('./babel/loader/index'), options: { transformMode: 'default', configFile: babelConfigFile, isServer, distDir, pagesDir, cwd, srcDir: path.dirname(srcDir), development: dev, hasReactRefresh: dev && isClient, hasJsxRuntime: true, reactCompilerPlugins: getReactCompilerPlugins(reactCompilerOptions, dev, isServer), reactCompilerExclude } }; } return undefined; }; /** * Get a separate babel loader for the react compiler, only used if Babel is not * configured through e.g. .babelrc. If user have babel config, this should be configured in the babel loader itself. * Note from react compiler: * > For best results, compiler must run as the first plugin in your Babel pipeline so it receives input as close to the original source as possible. */ const getReactCompilerLoader = (options, cwd, isDev, isServer, reactCompilerExclude)=>{ const reactCompilerPlugins = getReactCompilerPlugins(options, isDev, isServer); if (!reactCompilerPlugins) { return undefined; } const config = { loader: require.resolve('./babel/loader/index'), options: { transformMode: 'standalone', cwd, reactCompilerPlugins } }; if (reactCompilerExclude) { config.options.reactCompilerExclude = reactCompilerExclude; } return config; }; export { getBabelLoader, getReactCompilerLoader }; //# sourceMappingURL=get-babel-loader-config.js.map
Save
cmd:
run