webpack3.0问题系列 ——postcss-loader的使用
程序员文章站
2022-06-14 22:34:19
...
问题:把autoprefixer在webpack.config.js中设置 出现 Module build failed: Error: No PostCSS Config found in:
解决方案: 只是换了一种引入方式,解决了
1,创建postcss.config.js文件,添加如下代码:(引入autoprefixer插件)
module.exports = {
plugins: {
'autoprefixer': {browsers: 'last 5 version'}
}
}
2,这样就可以正确使用了
注意:在webpack2.6版本 可以通过直接在webpack.config.js中添加如下代码使用:
plugins: [
new webpack.LoaderOptionsPlugin({
options: {
postcss: function(){
return [
require("autoprefixer")({
browsers: ['ie>=8','>1% in CN']
})
]
}
}
})
]
原因:探究中。。。
推荐阅读
-
VUE使用vuex解决模块间传值问题的方法
-
Vue2.0使用过程常见的一些问题总结学习
-
AngularJS使用ng-Cloak阻止初始化闪烁问题的方法
-
iPad Air的12个使用问题及解决办法汇总
-
在使用MAC OS X打印文件时发生各种问题的解决方法
-
SQL Server使用Merge语句当源表数据集为空时,无法进行查询的问题
-
html5的input的required使用中遇到的问题及解决方法
-
使用vue-cli打包过程中的步骤以及问题的解决
-
使用proxytable 配置解决 vue-cli 的跨域请求问题【推荐】
-
巨坑总结:ModuleNotFoundError: No module named ‘tools‘引发的一系列问题