travco / postcss-extend

A PostCSS plugin to minimize the number of repeat-selectors and rules you write
MIT License
114 stars 8 forks source link

Tailwind with postcss nested and postcss extend #40

Open hotrungnhan opened 3 years ago

hotrungnhan commented 3 years ago

If you want use these three you should import like below first is extend , and the other is after.

module.exports = {
  plugins: [
    require('postcss-extend'),
    require('postcss-nested'),
    require("tailwindcss"),
    require("autoprefixer"),
  ],
}