1.新建的vue项目启动后报错
No PostCSS Config found in: /Library/WebServer/Documents/WebserveProjects/shopapp-wechat/node_module
2.此时需要对webpack 3.0进行配置
postcss.config.js是针对webpack3.0做的特殊处理
在项目根目录新建postcss.config.js文件,并对postcss进行配置:
module.exports = { plugins: { 'autoprefixer': {browsers: 'last 5 version'} }}复制代码