username@email.com
2021-11-29 e9f8d150668099ffe648b7c9ab9df290c3276db8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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,
    },
  },
};