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 htmlmin = require('html-minifier-terser')
|
||||||
const isProduction = process.env.ELEVENTY_ENV === 'production'
|
|
||||||
|
|
||||||
module.exports = (eleventyConfig) => {
|
module.exports = (eleventyConfig) => {
|
||||||
eleventyConfig.addTransform('html-minify', (content, path) => {
|
eleventyConfig.addTransform('html-minify', (content, path) => {
|
||||||
if (path && path.endsWith('.html') && isProduction) {
|
if (path && path.endsWith('.html')) {
|
||||||
return htmlmin.minify(content, {
|
return htmlmin.minify(content, {
|
||||||
collapseBooleanAttributes: true,
|
collapseBooleanAttributes: true,
|
||||||
collapseWhitespace: true,
|
collapseWhitespace: true,
|
||||||
decodeEntities: true,
|
decodeEntities: true,
|
||||||
includeAutoGeneratedTags: false,
|
includeAutoGeneratedTags: false,
|
||||||
|
minifyCSS: true,
|
||||||
|
minifyJS: true,
|
||||||
removeComments: true,
|
removeComments: true,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue