0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-22 08:40:03 +01:00
posthog/postcss.config.js

11 lines
208 B
JavaScript

/* eslint-env node */
const plugins = [require('autoprefixer')] // postCSS modules here
if (process.env.NODE_ENV === 'production') {
plugins.push(require('cssnano'))
}
module.exports = {
plugins,
}