paramonovav / spress-html-compress
Compress/minify your HTML
Installs: 160
Dependents: 0
Suggesters: 0
Security: 0
Stars: 5
Watchers: 3
Forks: 3
Open Issues: 0
Type:spress-plugin
Requires
- spress/spress-installer: 2.0.*
- wyrihaximus/html-compress: ^1.1
This package is auto-updated.
Last update: 2024-10-19 05:13:15 UTC
README
Compress/minify your HTML
How to install?
Go to your Spress site and add the following to your composer.json
and run
composer update
:
"require": { "paramonovav/spress-html-compress": "2.0.*" }
How to use?
Add the following to your config.yml to exclude some files from minify/compress process:
html_compress_exclude: ['.htaccess','robots.txt','crossdomain.xml', 'sitemap.xml','nortonsw_bc7be3d0-796e-0.html','BingSiteAuth.xml'] html_compress_exclude_pattern: '/(.*)?\.(jpe?g|png|gif|ico|svg|psd|tiff|webm|mov|avi|mkv|mp4|eot|ttf|otf|woff|woff2|webp)$/i'
Just run build command:
spress site:build
If you want to disable compression use the following config
html_compress: false