You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fanluyan 499b42991b cacnew 2 years ago
..
lib cacnew 2 years ago
node_modules cacnew 2 years ago
.travis.yml cacnew 2 years ago
README.md cacnew 2 years ago
index.js cacnew 2 years ago
package.json cacnew 2 years ago
test.js cacnew 2 years ago

README.md

px2rem-loader

a webpack loader for px2rem

NPM version Build status Downloads

Install

npm install px2rem-loader

webpack config

module.exports = {
  // ...
  module: {
    rules: [{
      test: /\.css$/,
      use: [{
        loader: 'style-loader'
      }, {
        loader: 'css-loader'
      }, {
        loader: 'px2rem-loader',
        // options here
        options: {
          remUni: 75,
          remPrecision: 8
        }
      }]
    }]
  }
}

Please see px2rem for more information about query parameters of px2rem.