I intend to compress/Minfy my HTML output so that the html size becomes less which increases the performance .
lots of white space if you see the source code .
Solved! Go to Solution.
Topics help categorize Community content and increase your ability to discover relevant content.
Views
Replies
Total Likes
Hi @ebin_Aby ,
HTML compression needs to be implemented on your web server. If its Apache, you can use mod_deflate module. Please follow [1] for steps and [2] for documentation
[1] - https://knackforge.com/blog/karalmax/how-enable-gzip-compression-apache
[2] - https://httpd.apache.org/docs/2.4/mod/mod_deflate.html
The following document may be helpful:
Try rebuilding the clientlibs via File System, as per: https://helpx.adobe.com/ca/experience-manager/kb/How-to-force-a-recompilation-of-all-Sling-scripts-j...
* Moreover, what kind of errors do you see in the error.log file?
Views
Replies
Total Likes
You can strip whitspaces in HTML with something like htmlcompressor [0].
Views
Replies
Total Likes
To add to this, the overhead of doing whitespace compression is much bigger than the gain of just enabling gzip compression on the non-minified content. Gzip is pretty good in compressing spaces as well. More at https://www.peterbe.com/plog/html-whitespace-compression and [0]. Even so, some HTML elements should not be stripped from whitespace (see Collapse Whitespace [1]).
[0]: https://stackoverflow.com/questions/7115217/any-reason-not-to-strip-whitespace-in-html
[1]: https://www.modpagespeed.com/doc/filter-whitespace-collapse
Views
Replies
Total Likes
Hi @ebin_Aby
AEM OOTB doesn't have default option to minify html.
Minification option is available for css /js by default .
If you need to minify html output, you need to use html compression library which is custom implementation.
There are many plugins are available to achieve the minification of html. One of the simplest is
maven html compression tag library, which you can import and use it for html minification.
https://mvnrepository.com/artifact/com.googlecode.htmlcompressor/htmlcompressor/1.4
Or
You can achieve the same towards apache layer as well. mod-pagespeed is one of the plugin which includes minification/compression of html along with other features which contribute to page performance. You can find more details in below article.
https://www.modpagespeed.com/doc/build_mod_pagespeed_from_source
Views
Replies
Total Likes
Hi @ebin_Aby ,
HTML compression needs to be implemented on your web server. If its Apache, you can use mod_deflate module. Please follow [1] for steps and [2] for documentation
[1] - https://knackforge.com/blog/karalmax/how-enable-gzip-compression-apache
[2] - https://httpd.apache.org/docs/2.4/mod/mod_deflate.html
Hi,
I see mod_deflate is for compression not minification. Is there a recommended alternative for minifying the HTML files? We have found many references to mod_pagespeed but the last version of the module was released in 2018 and there is no active development (https://groups.google.com/g/mod-pagespeed-discuss/c/dKz1KKjEII0).
Views
Replies
Total Likes
I don't think so, removing whitespaces would make much difference in performance. If you have large pages in sizes then it may but for small pages, it may not.