Advertisement
Guest User

Untitled

a guest
Sep 17th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module.exports = ({ file, options, env }) => ({
  2.   sourceMap: true,
  3.   plugins: {
  4.     'postcss-import': true,
  5.     'tailwindcss': true,
  6.     'autoprefixer': env === 'production' ? options.autoprefixer : false,
  7.     'cssnano': env === 'production' ? options.cssnano : false
  8.   }
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement