PostCSS All In One



PostCSS All In One

​https://postcss.org/​

​https://www.webpackjs.com/loaders/postcss-loader/​

​https://github.com/postcss/postcss-load-config​

Autoprefixe

​https://github.com/postcss/autoprefixer​

Parse CSS and add vendor prefixes to rules by Can I Use

.postcssrc

Create a .postcssrc file in JSON or YAML format

It's recommended to use an extension (e.g .postcssrc.json or .postcssrc.yml) instead of .postcssrc

postcss.config.js


module.exports = {
plugins: [
require('precss'),
require('autoprefixer')
]
}




xgqfrms