13 lines
290 B
13 lines
290 B
module.exports = {
|
|
plugins: {
|
|
"@fullhuman/postcss-purgecss": {
|
|
content: [
|
|
"./assets/js/*.js",
|
|
"./content/*.md",
|
|
"./layouts/**/*.html",
|
|
],
|
|
safelist: ["arrow", "tooltip", "tooltip-arrow", "tooltip-inner"],
|
|
blocklist: [""],
|
|
},
|
|
},
|
|
};
|
|
|