chore: html minify tweaks
This commit is contained in:
parent
71eb915918
commit
ab1ce8f77e
1 changed files with 3 additions and 2 deletions
|
@ -1,14 +1,15 @@
|
|||
const htmlmin = require('html-minifier-terser')
|
||||
const isProduction = process.env.ELEVENTY_ENV === 'production'
|
||||
|
||||
module.exports = (eleventyConfig) => {
|
||||
eleventyConfig.addTransform('html-minify', (content, path) => {
|
||||
if (path && path.endsWith('.html') && isProduction) {
|
||||
if (path && path.endsWith('.html')) {
|
||||
return htmlmin.minify(content, {
|
||||
collapseBooleanAttributes: true,
|
||||
collapseWhitespace: true,
|
||||
decodeEntities: true,
|
||||
includeAutoGeneratedTags: false,
|
||||
minifyCSS: true,
|
||||
minifyJS: true,
|
||||
removeComments: true,
|
||||
})
|
||||
}
|
||||
|
|
Reference in a new issue