blob: 29f9daf859bdf7c73badb2043493513dd195fcf1 (
plain) (
tree)
|
|
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,
},
},
};
|