🧪 Minify (JS & CSS)

HTTP/HTTPS – up to ~2 MB are processed
Allowed: .js, .mjs, .cjs, .css (limits: upload_max_filesize/post_max_size)
ℹ️ Explanation of options, show / hide

JS Safe Mode (conservative):
Conservative minification. Removes comments, blank lines and edge whitespace without touching strings, template literals or regex literals.

Keep /*! license comments:
Preserves only /*! … */ comments, e.g. MIT/GPL notices. Removes other block comments.

Remove // line comments:
Removes real // comments with a scanner; preserves http(s)://, data:// and //# sourceMappingURL.

Recommendation:
Keep all three options enabled for safe and effective minification.

Note: If URL and upload are provided, upload takes priority. · API mode: ?format=json&url=https://... returns JSON with type, sizes and base64 content

Why minify?

Pro tips