From d7b608709f463fced607e26127aee975159e5935 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Sun, 31 Dec 2023 12:23:38 -0800 Subject: [PATCH] chore: minify more things --- .eleventy.js | 3 +++ package.json | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.eleventy.js b/.eleventy.js index 59f452aa..7f0a72f0 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -110,11 +110,14 @@ export default async function (eleventyConfig) { return htmlmin.minify(content, { collapseBooleanAttributes: true, collapseWhitespace: true, + collapseInlineTagWhitespace: true, decodeEntities: true, includeAutoGeneratedTags: false, minifyCSS: true, minifyJS: true, + minifyURLs: true, removeComments: true, + useShortDoctype: true, processScripts: ['application/ld+json'], // minify JSON-LD scripts }) } diff --git a/package.json b/package.json index 1e6dbb04..6b71bfda 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "4.0.11", + "version": "4.0.12", "description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": {