PostCSS MINIFY

1) npm install cssnano

2) Edit postcss.config.js:

module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
    cssnano: {}
  }
}	
KostasX