PostCSS configuration
You may add extra PostCSS plugins to your config and Maizzle will use them when it compiles Tailwind CSS.
For example, install Autoprefixer:
npm install autoprefixer
You can then add it to your config.js
:
config.js
module.exports = {
build: {
postcss: {
plugins: [
require('autoprefixer')()
]
}
}
}
Any plugins added here will be registered at the end of the stack, after Tailwind CSS.
Copyright © 2022 Maizzle
Edit this page on GitHub