postcss-any2rem

基于postcss-px2rem-exclude,在基础上继承了排除某些文件夹的功能,添加了根据特定值进行替换的能力

Usage no npm install needed!

<script type="module">
  import postcssAny2rem from 'https://cdn.skypack.dev/postcss-any2rem';
</script>

README

postcss-any2rem

基于 postcss-px2rem-exclude,在基础上继承了排除某些文件夹的功能,添加了根据关键字进行替换的能力

Useage

npm i postcss-any2rem -D

.postcssrc.js

module.exports = {
  'plugins': {
    'postcss-any2rem': {
      remUnit: 75,
      any: 'rpx', // rpx -> rem
      exclude: /node_modules|folder_name/i
    }
  }
}