Error: No PostCSS Config found in...

vue 项目打包时报了如下错误:Error: No PostCSS Config found in...

bug3

没有postCss配置因此添加一个 postcss.config.js 文件放在根目录下
postcss-loader 是为了兼容css3,自动给css添加前缀的webpack插件

module.exports = {
  plugins: {
    'autoprefixer': {
            browsers: [
                'last 5 version', //兼容到上五个版本
                '> 1%' //兼容到大于1%的用户
            ],
        }
  }
}

image

大功告成,但是注意,上图中已经提示只能在http server环境下打开index.html文件,不能在file://环境下打开。

我的个人博客,有空来坐坐

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