UNPKG

197 BJavaScriptView Raw
1module.exports = config => {
2 config.plugins = [
3 ...config.plugins || [],
4 // px to rem
5 require('postcss-plugin-px2rem')({ rootValue: 100, minPixelValue: 2 }),
6 ];
7 return config;
8};