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,
| },
| },
| };
|
|