soapbox/postcss.config.js

9 wiersze
183 B
JavaScript
Czysty Zwykły widok Historia

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