mirror of
https://github.com/fengyuanchen/viewerjs.git
synced 2025-12-08 19:56:00 +00:00
23 lines
391 B
JavaScript
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,
|
|
},
|
|
},
|
|
};
|