Allen Huang
Allen Huang
To make our job easier, please spend time to review your application before submitting. #### Add a x between [] if you meet that requirement example `[x]` - [x] You're...
安装npm6.0.0的时候会报如下错误: ``` Waring: current path D:\nodejs\ not exist npm. Notice: local npm version is unknown Notice: remote npm version is 6.0.0 Notice: download 6.0.0 version [Y/n]? y Start download new...
`postcss.config.js`文件配置中目前只可以使用`exclude`属性来排除进行转换的文件路径: ```javascript module.exports = { plugins: { 'postcss-px2vp': { ... exclude: [/\/src\/views\//] }, }, } ``` 希望能使用`include`属性直接指定需要转换的文件路径: ```javascript module.exports = { plugins: { 'postcss-px2vp': { ... // exclude: [/\/src\/views\//] include:...