Mangane/postcss.config.js
2022-03-19 13:24:16 -05:00

9 lines
183 B
JavaScript

module.exports = ({ env }) => ({
plugins: {
tailwindcss: {},
autoprefixer: {},
'postcss-object-fit-images': {},
cssnano: env === 'production' ? {} : false,
},
});