Files
core/library/cropperjs/postcss.config.js
2020-01-11 10:30:12 +00:00

23 lines
391 B
JavaScript

const rollupConfig = require('./rollup.config');
module.exports = {
plugins: {
'postcss-import': {},
'postcss-preset-env': {
stage: 3,
features: {
'nesting-rules': true,
},
},
'postcss-url': {
url: 'inline',
},
'postcss-header': {
header: rollupConfig.output[0].banner,
},
stylelint: {
fix: true,
},
},
};