2023-12-21 17:21:46 +00:00
|
|
|
/** @type {import('postcss-load-config').ConfigFn} */
|
|
|
|
const config = ({ env }) => ({
|
2020-03-28 00:35:00 +00:00
|
|
|
plugins: {
|
2022-03-19 18:20:00 +00:00
|
|
|
tailwindcss: {},
|
2020-03-28 00:35:00 +00:00
|
|
|
autoprefixer: {},
|
|
|
|
cssnano: env === 'production' ? {} : false,
|
|
|
|
},
|
|
|
|
});
|
2023-12-21 17:21:46 +00:00
|
|
|
|
|
|
|
module.exports = config;
|