DEV Community

Discussion on: Setup TailwindCSS in Angular the easy way

Collapse
 
initvik profile image
Vikas

Please add the postcss configuration in the article seems like its missing

// postcss.config.js
module.exports = {
  plugins: {
    tailwindcss: {},
    autoprefixer: {},
  },
};
Enter fullscreen mode Exit fullscreen mode