Only apply autoprefixer in production (#23168)

This commit is contained in:
Tim Neutkens
2025-08-20 07:26:32 +00:00
committed by GitHub
parent e6959f3c7c
commit 4ae5de5a3a
+7 -2
View File
@@ -1,6 +1,11 @@
module.exports = {
const config = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
};
if (process.env.NODE_ENV === "production") {
config.plugins.autoprefixer = {};
}
module.exports = config;