Skip to content

Instantly share code, notes, and snippets.

@theClarkSell
theClarkSell / postcss.config.cjs
Created March 4, 2022 18:55
postcss svelte config
const autoprefixer = require('autoprefixer');
const cssnano = require('cssnano');
const mode = process.env.NODE_ENV;
const dev = mode === 'development';
const config = {
plugins: [
autoprefixer(),
!dev &&