Calendar/postcss.config.js

14 lines
260 B
JavaScript
Raw Permalink Normal View History

2025-11-03 14:54:57 +01:00
export default {
plugins: {
'postcss-nesting': {},
'autoprefixer': {},
'cssnano': {
preset: ['default', {
discardComments: {
removeAll: true,
},
normalizeWhitespace: true,
}]
}
}
};