module.exports = { plugins: { 'tailwindcss': {}, 'autoprefixer': {}, 'cssnano': { preset: ['default', { discardComments: { removeAll: true, }, normalizeWhitespace: true, minifySelectors: true, minifyParams: true, mergeRules: true, discardDuplicates: true, discardEmpty: true, reduceIdents: false, // Behalte CSS Custom Properties zindex: false, // Verhindere z-index Optimierungen die Layouts brechen können }] } } }