file-receive-manage-web/postcss.config.js

10 lines
226 B
JavaScript
Raw Normal View History

2023-12-06 14:29:46 +08:00
module.exports = {
plugins: {
"postcss-import": {},
"tailwindcss/nesting": {},
tailwindcss: {},
autoprefixer: {},
...(process.env.NODE_ENV === "production" ? { cssnano: {preset: 'default'} } : {})
}
};