2023-12-21 09:21:46 -08:00
|
|
|
/** @type {import('postcss-load-config').ConfigFn} */
|
|
|
|
const config = ({ env }) => ({
|
2020-03-27 17:35:00 -07:00
|
|
|
plugins: {
|
2022-03-19 11:20:00 -07:00
|
|
|
tailwindcss: {},
|
2020-03-27 17:35:00 -07:00
|
|
|
autoprefixer: {},
|
|
|
|
cssnano: env === 'production' ? {} : false,
|
|
|
|
},
|
|
|
|
});
|
2023-12-21 09:21:46 -08:00
|
|
|
|
2024-08-20 06:51:36 -07:00
|
|
|
module.exports = config;
|