Automatically minify your HTML, CSS, and JS files to optimize space and bandwidth usage.
.min.html
, .min.css
, or .min.js
file each time you save a .html
, .css
, or .js
file.
For example: styles.css
becomes styles.min.css
..html
, .css
, or .js
file.Ctrl/Cmd
+ S
to save your file..min.html
, .min.css
, or .min.js
file is automatically generated.Please check the changelog for version updates.
Note: Any additional options not provided below are defaulted to their respective values in their original code.
html-minifier-terser
Options Utilized:{
"removeAttributeQuotes": true,
"removeComments": true,
"removeEmptyElements": true,
"removeOptionalTags": true,
"removeRedundantAttributes": true,
"collapseWhitespace": true,
"conservativeCollapse": true,
"caseSensitive": true,
"continueOnParseError": true,
"collapseBooleanAttributes": true,
"processConditionalComments": true,
"minifyCSS": true,
"minifyJS": true,
"html5": true
}
clean-css
Options Utilized:{
"level": {
"1": {
"all": true
}
}
}
terser
Options Utilized:{
"mangle": false
}