From 6e366c0fe5a47e1a9765302acf1de5447fa98496 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 10 Jun 2024 09:34:43 -0700 Subject: [PATCH] chore: restore transforms --- .eleventy.js | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.eleventy.js b/.eleventy.js index 95e897e2..bdb1efb3 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -4,6 +4,7 @@ import lightningCSS from '@11tyrocks/eleventy-plugin-lightningcss' import markdownIt from 'markdown-it' import markdownItAnchor from 'markdown-it-anchor' import markdownItFootnote from 'markdown-it-footnote' +import htmlmin from 'html-minifier-terser' import filters from './config/filters/index.js' import { minifyJsComponents } from './config/events/index.js' import { allContent, popularPosts, searchIndex } from './config/collections/index.js' @@ -83,6 +84,29 @@ export default async function (eleventyConfig) { eleventyConfig.addShortcode('appVersion', () => appVersion) eleventyConfig.addShortcode('currentYear', () => DateTime.now().year) + // transforms + eleventyConfig.addTransform('html-minify', (content, path) => { + if (path && path.endsWith('.html')) { + return htmlmin.minify(content, { + collapseBooleanAttributes: true, + collapseWhitespace: true, + decodeEntities: true, + includeAutoGeneratedTags: false, + minifyCSS: true, + minifyJS: true, + minifyURLs: true, + noNewlinesBeforeTagClose: true, + quoteCharacter: '"', + removeComments: true, + sortAttributes: true, + sortClassName: true, + useShortDoctype: true, + processScripts: ['application/ld+json'], // minify JSON-LD scripts + }) + } + return content + }) + // events eleventyConfig.on('afterBuild', minifyJsComponents)