You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
407 B

2 years ago
  1. /* eslint-disable import/no-extraneous-dependencies, global-require */
  2. const plugins = [require('tailwindcss'), require('autoprefixer')];
  3. if (process.env.NODE_ENV === 'production') {
  4. plugins.push(
  5. require('cssnano')({
  6. preset: [
  7. 'default',
  8. {
  9. discardComments: {
  10. removeAll: true,
  11. },
  12. },
  13. ],
  14. }),
  15. );
  16. }
  17. module.exports = { plugins };