webpack2.0配置postcss

本篇文章主要介绍了webpack2.0配置postcss-loader的方法,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧

本文介绍使用webpack2.0配置postcssloader,分享给大家。具体如下:

安装postcss-loader

npm install --save-dev postcss-loader

然后配置webpack.config.js

{ test:/\.css$/, use:[ 'style-loader','css-loader?importLoaders=1','postcss-loader' ] }

一种办法是配置postcss.config.js

module.exports = { plugins: [ require('autoprefixer')({ /* ...options */ }) ] }

第二张办法是webpack.config.js使用LoaderOptionsPlugin

module.exports = { plugins: [ new webpack.LoaderOptionsPlugin({ options: { postcss: function(){ return [ require("autoprefixer")({ browsers: ['ie>=8','>1% in CN'] }) ] } } }) ] }

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wydwpy.html