mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-11-04 22:59:38 +01:00
21 lines
No EOL
392 B
JavaScript
21 lines
No EOL
392 B
JavaScript
const purgecss = require("@fullhuman/postcss-purgecss");
|
|
|
|
const plugins = [];
|
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
plugins.push(
|
|
purgecss({
|
|
content: [
|
|
'./dist-temp/*.html',
|
|
'./dist-temp/**/*.html',
|
|
'./dist-temp/**/*.js',
|
|
'./dist-temp/*.svg',
|
|
'./dist-temp/**/*.svg'
|
|
]
|
|
})
|
|
);
|
|
}
|
|
|
|
module.exports = {
|
|
plugins: plugins
|
|
}; |