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