Added CSS / Postcss optimization like cssnano

This commit is contained in:
AdamBtech
2025-05-27 09:28:22 +02:00
parent e6622285ed
commit 76495ded6f
4 changed files with 798 additions and 7 deletions

View File

@@ -1,5 +1,21 @@
{
"plugins": {
"@tailwindcss/postcss": {}
"@tailwindcss/postcss": {},
"autoprefixer": {},
"cssnano": {
"preset": [
"default",
{
"discardComments": {
"removeAll": true
},
"normalizeWhitespace": true,
"mergeLonghand": true,
"mergeRules": true,
"minifySelectors": true,
"reduceIdents": false
}
]
}
}
}