mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +01:00
11 lines
208 B
JavaScript
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,
|
|
}
|