mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 17:24:15 +01:00
11 lines
295 B
JavaScript
11 lines
295 B
JavaScript
// It is handy to not have those transformations while we developing
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = {
|
|
plugins: [
|
|
require('autoprefixer'),
|
|
require('cssnano'),
|
|
// More postCSS modules here if needed
|
|
],
|
|
}
|
|
}
|