You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
444 B
JavaScript
16 lines
444 B
JavaScript
// Remove unused CSS selectors.
|
|
const purgecss = require('@fullhuman/postcss-purgecss')({
|
|
// Use stats generated by Hugo.
|
|
content: [ './hugo_stats.json' ],
|
|
defaultExtractor: (content) => {
|
|
let els = JSON.parse(content).htmlElements;
|
|
return els.tags.concat(els.classes, els.ids);
|
|
}
|
|
});
|
|
|
|
module.exports = {
|
|
plugins: [
|
|
...(process.env.HUGO_ENVIRONMENT === 'production' ? [ purgecss ] : [])
|
|
]
|
|
};
|