0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 21:49:51 +01:00
posthog/postcss.config.js

13 lines
265 B
JavaScript

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