mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-24 00:47:50 +01:00
8c1753c26a
* Improve postcss.config.js style * Improve dev instance analytics * Use hashed MAC address as distinct ID is DEBUG mode * Improve code style very slightly
11 lines
257 B
JavaScript
11 lines
257 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,
|
|
}
|