atlas/postcss.config.js

16 lines
272 B
JavaScript
Raw Normal View History

const plugins = [];
if (process.env.NODE_ENV === "production") {
2023-03-21 13:32:49 +01:00
plugins.push({
"@fullhuman/postcss-purgecss": {
content: [
2023-03-21 13:32:49 +01:00
'./dist-temp/*.{html,js,svg}',
'./dist-temp/**/*.{html,js,svg}'
]
2023-03-21 13:32:49 +01:00
}
})
}
module.exports = {
plugins
};