summaryrefslogtreecommitdiff
path: root/postcss.config.js
blob: 8feb7c8bffdf3ecb9e79efb5b29c34b6323c771d (plain)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
  plugins: {
    autoprefixer: {},
    'postcss-plugin-px2rem': {
      rootValue: 14,
      exclude: /node_modules/i,
      minPixelValue: 3,
      selectorBlackList: ['.html', 'iconfont', '.ttf', '.css']
    }
  }
}