bigbuffet-rw/postcss.config.cjs
marcin mikołajczak 7a2c77efa4 lint
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2024-08-20 16:54:19 +02:00

10 lines
224 B
JavaScript

/** @type {import('postcss-load-config').ConfigFn} */
const config = ({ env }) => ({
plugins: {
tailwindcss: {},
autoprefixer: {},
cssnano: env === 'production' ? {} : false,
},
});
module.exports = config;