This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
cyber-narrator-cn-ui/postcss.config.js
2022-04-25 15:29:44 +08:00

12 lines
237 B
JavaScript

module.exports = {
plugins: {
autoprefixer: {},
'postcss-plugin-px2rem': {
rootValue: 16,
exclude: /node_modules/i,
minPixelValue: 3,
selectorBlackList: ['.html', 'iconfont', '.ttf', '.css']
}
}
}