1.报错

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

2.解决方法:

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

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


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

我的个人博客有空来坐坐
https://www.wangyanan.online

Logo

前往低代码交流专区

更多推荐