0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-24 09:14:46 +01:00
posthog/postcss.config.js
Michael Matloka 8c1753c26a
Improve tracking of development instances (resolves #1518) (#1519)
* Improve postcss.config.js style

* Improve dev instance analytics

* Use hashed MAC address as distinct ID is DEBUG mode

* Improve code style very slightly
2020-08-28 02:32:21 +02:00

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,
}