From 86f22d1abda4ef668f3e2a4ed43f8c6e76217b2c Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Sun, 8 Oct 2023 22:55:06 -0500 Subject: [PATCH] refactor: Replace postcss-purgecss import statement --- postcss.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/postcss.config.js b/postcss.config.js index c9eba21..c64d027 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,4 +1,4 @@ -const purgecss = require("postcss-purgecss")({ +const purgecss = require("@fullhuman/postcss-purgecss")({ content: ["./hugo_stats.json"], defaultExtractor: (content) => { let els = JSON.parse(content).htmlElements;