解决vue webApp使用lib-flexible和px2rem引用第三方ui库后,样式变小问题

首先,需要卸载项目中的postcss-px2rem。

npm uninstall postcss-px2rem --save-dev

其次,安装postcss-px2rem-exclude

npm install postcss-px2rem-exclude --save

然后在postcss.js下配置

    "postcss-px2rem-exclude": {

      remUnit: 75,

      exclude: /node_modules/

    }

最后记得把utils.js下的postcss-px2rem配置注释就ok了

转载于:https://www.cnblogs.com/FengWenQi/p/10719061.html

你可能感兴趣的:(解决vue webApp使用lib-flexible和px2rem引用第三方ui库后,样式变小问题)