Error No PostCSS Config found in

1 min read

在项目根目录新建postcss.config.js文件,并对postcss进行配置:

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