Update postcss.config.mjs
All checks were successful
Check / Lint and Check (push) Successful in 40s

This commit is contained in:
2025-11-26 12:42:43 +01:00
parent f7697f9721
commit 10bc3bd347

View File

@@ -2,27 +2,6 @@
const config = {
plugins: {
'@tailwindcss/postcss': {},
"postcss-flexbugs-fixes": {
"postcss-preset-env": {
autoprefixer: {
flexbox: "no-2009",
},
stage: 3,
features: {
"custom-properties": false,
},
},
"@fullhuman/postcss-purgecss": {
content: [
"./pages/**/*.{js,jsx,ts,tsx}",
"./components/**/*.{js,jsx,ts,tsx}",
],
defaultExtractor: (content) => content.match(/[\w-/:]+(?<!:)/g) || [],
safelist: ["html", "body"],
},
},
cssnano: {},
},
};