pages/postcss.config.js

14 lines
341 B
JavaScript
Raw Normal View History

const purgecss = require("@fullhuman/postcss-purgecss")({
2022-03-22 00:05:10 +00:00
content: ["./hugo_stats.json"],
defaultExtractor: (content) => {
let els = JSON.parse(content).htmlElements;
return els.tags.concat(els.classes, els.ids);
},
});
2023-02-25 05:13:45 +00:00
if (process.env.HUGO_ENVIRONMENT === "production") {
module.exports = {
plugins: [purgecss],
};
}