Error: No PostCSS Config found in... 报错

解决方案

在项目根目录下,或 src 同级目录,新建postcss.config.js文件,并进行配置:

module.exports = { 
  plugins: { 
    'autoprefixer': {browsers: 'last 5 version'} 
  } 
}

重新运行即可

在npm上查到的postcss配置在webpack.config.js,
postcss.config.js是针对webpack3.0做的特殊处理

你可能感兴趣的:(Error: No PostCSS Config found in... 报错)