21 lines
540 B
JavaScript
21 lines
540 B
JavaScript
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
|
|
}]
|
|
}
|
|
}
|
|
}
|