Vue 项目启动抛出 Error/ No PostCSS Config found in

解决办法:
在根目录下创建 postcss.config.js 文件,内容写:

module.exports = {
    plugins: [
        require('autoprefixer')({
            browsers: ['last 5 versions']
        })
    ]
}

猜你喜欢

转载自blog.csdn.net/Follow_the_heart/article/details/84061113
今日推荐