vue打包时报错 Error: No PostCSS Config found in 的解决方法
vue 项目打包时报了如下错误:Error: No PostCSS Config found in...没有postCss配置因此添加一个postcss.config.js文件放在根目录下postcss-loader是为了兼容css3,自动给css添加前缀的webpack插件module.exports = {plugins: {'autoprefixer': {b...
·
1.报错
vue 项目打包时报了如下错误:Error: No PostCSS Config found in...
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
更多推荐
已为社区贡献16条内容
所有评论(0)