美文网首页
Error: No PostCSS Config found i

Error: No PostCSS Config found i

作者: 躺在家里干活 | 来源:发表于2019-10-09 10:27 被阅读0次

    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 i

          本文链接:https://www.haomeiwen.com/subject/fbmwpctx.html