Mangane/postcss.config.js

9 lines
183 B
JavaScript
Raw Permalink Normal View History

2020-03-28 01:35:00 +01:00
module.exports = ({ env }) => ({
plugins: {
2022-03-19 19:20:00 +01:00
tailwindcss: {},
2020-03-28 01:35:00 +01:00
autoprefixer: {},
'postcss-object-fit-images': {},
cssnano: env === 'production' ? {} : false,
},
});