R: Disable tailwind optimizations for local builds

This commit is contained in:
Ivan 2024-09-04 12:31:31 +03:00
parent a2882777aa
commit d4fe453840

View File

@ -23,7 +23,11 @@ export default {
extend: {}
},
plugins: [],
...(process.env.NODE_ENV === 'production'
? {
experimental: {
optimizeUniversalDefaults: true
}
}
: {})
};