Install docz-plugin-postcss
using npm:
npm i -D docz-plugin-postcss
Or using Yarn with:
yarn add --dev docz-plugin-postcss
Just import the plugin inside your doczrc.js
import { postCSSPlugin } from 'docz-plugin-postcss';
export default {
plugins: [postCSSPlugin()],
};
This project uses PostCSS Preset Env so you don't need to manually install all the different PostCSS plugins but just pass-in your desired configuration. Have a look at the preset-env playground for testing out all of the available features.
You can pass a custom configuration according to the PostCSS Preset Env documentation.
Eg.
import { postCSSPlugin } from 'docz-plugin-postcss';
export default {
plugins: [
postCSSPlugin({
stage: 3,
features: {
'nesting-rules': true,
},
}),
],
};
MIT License © Andrea SonnY