viewerjs/postcss.config.js
2018-02-13 21:52:06 +08:00

16 lines
286 B
JavaScript

const rollupConfig = require('./rollup.config');
module.exports = {
plugins: {
'postcss-import': {},
'postcss-cssnext': {},
'postcss-url': {
url: 'inline',
},
'postcss-header': {
header: rollupConfig.output[0].banner,
},
stylefmt: {},
},
};