Create a new Processor instance that will apply plugins as CSS processors.
Processor
plugins
let postcss = require('postcss')postcss(plugins).process(css, { from, to }).then(result => { console.log(result.css)}) Copy
let postcss = require('postcss')postcss(plugins).process(css, { from, to }).then(result => { console.log(result.css)})
Optional
PostCSS plugins.
Processor to process multiple CSS.
Rest
Create a new
Processorinstance that will applypluginsas CSS processors.