From 15fdd94e2f3d1f5c1724971854ba201d47650255 Mon Sep 17 00:00:00 2001 From: Nick Schonning Date: Tue, 14 Mar 2023 23:01:10 -0400 Subject: Update PostCSS dependencies (#23835) --- postcss.config.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'postcss.config.js') diff --git a/postcss.config.js b/postcss.config.js index e7749a219..5d58d74e3 100644 --- a/postcss.config.js +++ b/postcss.config.js @@ -1,6 +1,6 @@ module.exports = ({ env }) => ({ - plugins: { - autoprefixer: {}, - cssnano: env === 'production' ? {} : false, - }, + plugins: [ + 'autoprefixer', + env === 'production' ? 'cssnano' : '', + ], }); -- cgit