Skip to content

Instantly share code, notes, and snippets.

@shiftgeist
Created July 27, 2020 08:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shiftgeist/0a1177f1c84803ca5b1658dddc62a0cc to your computer and use it in GitHub Desktop.
Save shiftgeist/0a1177f1c84803ca5b1658dddc62a0cc to your computer and use it in GitHub Desktop.
add postcss plugin in production only
module.exports = {
plugins: [
require('tailwindcss'),
require('autoprefixer'),
...(process.env.NODE_ENV === 'production' ? [purgecss] : [])
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment