pages/postcss.config.js

14 lines
341 B
JavaScript
Raw Normal View History

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