mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-10-31 20:59:09 +01:00
14 lines
No EOL
241 B
JavaScript
14 lines
No EOL
241 B
JavaScript
const plugins = [];
|
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
plugins["@fullhuman/postcss-purgecss"] = {
|
|
content: [
|
|
'./dist-temp/*.{html,js,svg}',
|
|
'./dist-temp/**/*.{html,js,svg}'
|
|
]
|
|
}
|
|
}
|
|
|
|
module.exports = {
|
|
plugins
|
|
}; |