This is the postcss block providing PostCSS configuration.
const { createConfig } = require('@webpack-blocks/webpack')
const postcss = require('@webpack-blocks/postcss')
const autoprefixer = require('autoprefixer')
module.exports = createConfig([
postcss([
autoprefixer({ browsers: ['last 2 versions'] })
])
])Check out the
Released under the terms of the MIT license.