front/js/uglifyjs.txt
2024-08-24 22:34:00 +08:00

7 lines
390 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

假设你的 JavaScript 文件名为 submission.js你可以使用以下命令来压缩和混淆它
uglifyjs submission.js -o submission.min.js -m -c
-o script.min.js指定输出文件名为 script.min.js。
-m启用变量名压缩mangle会将变量名压缩成更短的形式。
-c启用代码压缩compress会对代码进行优化以减少文件体积。