0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 18:07:17 +01:00
posthog/postcss.config.js

11 lines
295 B
JavaScript
Raw Normal View History

2020-03-11 22:37:10 +01:00
// 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
2020-03-14 15:53:14 +01:00
],
2020-03-11 22:37:10 +01:00
}
}