Skip to content

Instantly share code, notes, and snippets.

@fResult
Last active January 14, 2021 08:23
Show Gist options
  • Save fResult/7730d0dd10c8ffb6a504f99bf98b480b to your computer and use it in GitHub Desktop.
Save fResult/7730d0dd10c8ffb6a504f99bf98b480b to your computer and use it in GitHub Desktop.
Create craco.config.js and config postcss
const tailwind = require('tailwindcss')
const postcss = require('autoprefixer')
module.exports = {
style: {
postcss: {
plugins: [tailwind(), postcss()]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment